From d37ff7c8b276c4e7f6e1b10f852a71f62fbe430e Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Mon, 18 Sep 2023 11:30:23 -0400 Subject: [PATCH 01/10] Updates for cloud autort and blstores (#1887) * Update rt.sh * Create RegressionTests_noaacloud.log * Create Jenkinsfile.noaacloud * Update rt.conf * Update bl.py --- tests/auto-jenkins/jobs/bl.py | 4 +- tests/ci/Jenkinsfile | 20 +- tests/ci/Jenkinsfile.noaacloud | 144 ++ tests/logs/RegressionTests_acorn.log | 1153 ++++++++-------- tests/logs/RegressionTests_gaea.log | 1446 ++++++++++---------- tests/logs/RegressionTests_hera.log | 1548 +++++++++++----------- tests/logs/RegressionTests_jet.log | 990 +++++++------- tests/logs/RegressionTests_noaacloud.log | 991 ++++++++++++++ tests/logs/RegressionTests_orion.log | 1530 ++++++++++----------- tests/logs/RegressionTests_wcoss2.log | 1505 +++++++++++---------- tests/rt.conf | 406 +++--- tests/rt.sh | 7 +- 12 files changed, 5456 insertions(+), 4288 deletions(-) create mode 100644 tests/ci/Jenkinsfile.noaacloud create mode 100644 tests/logs/RegressionTests_noaacloud.log diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index ad3a95c5bb..ca64b26892 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -30,12 +30,12 @@ def set_directories(job_obj): f'emc.nemspara/FV3_RT/REGRESSION_TEST' elif job_obj.machine == 'gaea': workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' - blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' + blstore = '/lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs' rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ f'REGRESSION_TEST' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' - blstore = '/work2/noaa/epic-ps/RT/NEMSfv3gfs' + blstore = '/work/noaa/epic/UFS-WM_RT/NEMSfv3gfs' rtbldir = '/work/noaa/stmp/role-epic-ps/stmp/role-epic-ps/FV3_RT/'\ f'REGRESSION_TEST' elif job_obj.machine == 'cheyenne': diff --git a/tests/ci/Jenkinsfile b/tests/ci/Jenkinsfile index 6ed2403134..8e89f1dc10 100644 --- a/tests/ci/Jenkinsfile +++ b/tests/ci/Jenkinsfile @@ -6,8 +6,18 @@ pipeline { overrideIndexTriggers(false) skipDefaultCheckout(true) } - stages { + + stage('Launch SonarQube') { + steps { + script { + build job: '/ufs-weather-model/ufs-wm-sonarqube', parameters: [ + string(name: 'BRANCH_NAME', value: env.CHANGE_BRANCH ?: 'develop') + ], wait: false + } + } + } + stage('ORT') { matrix { axes { @@ -81,17 +91,17 @@ pipeline { } } } - - post { + + post { always { sh ''' docker rmi -f "$(docker image ls | grep -E -m1 "${IMG_NAME}" | awk '{ print $3 }')" docker rmi -f "$(docker image ls | grep -E -m1 'noaaepic' | awk '{ print $3 }')" ''' } - } + + } } } } } - diff --git a/tests/ci/Jenkinsfile.noaacloud b/tests/ci/Jenkinsfile.noaacloud new file mode 100644 index 0000000000..7ba2b0b2bd --- /dev/null +++ b/tests/ci/Jenkinsfile.noaacloud @@ -0,0 +1,144 @@ +pipeline { + agent none + stages { + stage('Start Parallelworks Cluster') { + agent { + label 'built-in' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("(.*)-aws-(.*)"))) { + env.CHOICE_NODE='pclusternoaav2use1' + } + else if ((label.matches("(.*)-gcp-(.*)"))) { + env.CHOICE_NODE='gclusternoaav2usc1' + } + else if ((label.matches("(.*)-azure-(.*)"))) { + env.CHOICE_NODE='azclusternoaav2use1' + } + else { + env.CHOICE_NODE='none' + } + } +// Why do I need another if..block, because it just works this way. + + if (CHOICE_NODE == 'azclusternoaav2use1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'azclusternoaav2use1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + + } + else if (CHOICE_NODE == 'gclusternoaav2usc1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'gclusternoaav2usc1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + } + else if (CHOICE_NODE == 'pclusternoaav2use1') { + echo "Starting up Parallelworks cluster ${CHOICE_NODE}...this might take 5-10 minutes...please be patient." + build job: 'parallel-works-jenkins-client/start-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'pclusternoaav2use1'), string(name: 'PW_CLUSTER_SSH_KEY', value: '~/.ssh/pw_id_rsa'), string(name: 'JAVA_VERSION', value: '11')] + } + else { + echo "${CHOICE_NODE} is NOT a Parallelworks cluster, moving on..." + } + } + } + } + stage('Run Regression Tests script') { + agent { + label "${CHOICE_NODE}" + } + environment { + GITHUB_SSH_KEY = credentials('ParallelworksGithubPrivateKey') + ACCNR = 'epic' + GITHUB_TOKEN = credentials('zachgithubtoken') + NODE_PATH = '/lustre/' + } + steps { + script { + for (label in pullRequest.labels) { + if ((label.matches("(.*)-BL"))) { + env.CREATE_BASELINES='true' + } + else { + env.CREATE_BASELINES='false' + } + } + } + cleanWs() + checkout scm + sh ''' + pwd + git submodule update --init --recursive + cd tests/ + if [[ "${CREATE_BASELINES}" = true ]] + then + echo "Creating baselines for regressions tests" + ./rt.sh -c -l rt.conf + echo "Sending regression test logs to $GIT_URL" + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + set +x + cd ${WORKSPACE} + export httpsorigin=`echo ${GIT_URL} | sed -e "s/github/$GITHUB_TOKEN@github/"` > /dev/null 2>&1 + git remote -v | grep -w httpsorigin > /dev/null 2>&1 && git remote remove httpsorigin > /dev/null 2>&1 + git remote add httpsorigin $httpsorigin > /dev/null 2>&1 + git add tests/logs/RegressionTests_noaacloud.log + git commit -m "[AutoRT] noaacloud Job Completed.\n\n\n on-behalf-of @ufs-community " + git push httpsorigin HEAD:$CHANGE_BRANCH > /dev/null 2>&1 + set -x + echo "Pushed logs to $GIT_URL $CHANGE_BRANCH" + echo "Removing labels from $GIT_URL" + 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://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":[".*BL"]}' + else + echo "Running regression tests and NOT creating baselines." + ./rt.sh -l rt.conf + echo "Sending regression test logs to $GIT_URL" + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + set +x + cd ${WORKSPACE} + export httpsorigin=`echo ${GIT_URL} | sed -e "s/github/$GITHUB_TOKEN@github/"` > /dev/null 2>&1 + git remote -v | grep -w httpsorigin > /dev/null 2>&1 && git remote remove httpsorigin > /dev/null 2>&1 + git remote add httpsorigin $httpsorigin > /dev/null 2>&1 + git add tests/logs/RegressionTests_noaacloud.log + git commit -m "[AutoRT] noaacloud Job Completed.\n\n\n on-behalf-of @ufs-community " + git push httpsorigin HEAD:$CHANGE_BRANCH > /dev/null 2>&1 + set -x + echo "Pushed logs to $GIT_URL $CHANGE_BRANCH" + echo "Removing labels from $GIT_URL" + 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://api.github.com/repos/${GIT_OWNER}/${GIT_REPO_NAME}/issues/${CHANGE_ID}/labels -d '{"labels":[".*RT"]}' + fi + ''' + } + } + stage('Stop Parallelworks Cluster') { + agent { + label 'built-in' + } + // Pedantic comment. + steps { + script { + if (CHOICE_NODE == 'azclusternoaav2use1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'azclusternoaav2use1')] + + } + else if (CHOICE_NODE == 'gclusternoaav2usc1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'gclusternoaav2usc1')] + } + else if (CHOICE_NODE == 'pclusternoaav2use1') { + echo "Shutting Down Parallelworks cluster ${CHOICE_NODE}." + build job: 'parallel-works-jenkins-client/stop-cluster', parameters: [string(name: 'PW_CLUSTER_NAME', value: 'pclusternoaav2use1')] + } + else { + echo "${CHOICE_NODE} is NOT a Parallelworks cluster, moving on..." + } + } + } + } + } +} diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index fcf2b6c5e8..41d5deb21f 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,54 @@ -Wed Sep 13 13:42:59 UTC 2023 +Fri Sep 15 16:11:17 UTC 2023 Start Regression test -Testing UFSWM Hash: cd0aed4ebf3a7a8299f1f9e40c9bed3f6280aff8 +Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 531 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 322 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 555 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1472 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 522 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 583 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 990 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 545 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 226 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 586 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 317 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 635 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1008 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 1343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1027 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 853 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1095 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 606 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1044 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1572 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 561 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaero_intel elapsed time 532 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 923 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1034 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 610 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 684 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1059 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 170 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 539 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_intel elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 1073 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 626 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 761 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 812 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 965 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1060 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 940 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 579 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 328.104981 -The maximum resident set size (KB) = 2967048 +The total amount of wall time = 460.715791 +The maximum resident set size (KB) = 2965676 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 244.146853 -The maximum resident set size (KB) = 1565928 +The total amount of wall time = 268.664338 +The maximum resident set size (KB) = 1562408 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +256,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.516785 -The maximum resident set size (KB) = 2998128 +The total amount of wall time = 482.271677 +The maximum resident set size (KB) = 2998344 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +316,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 224.439723 -The maximum resident set size (KB) = 3056288 +The total amount of wall time = 340.521824 +The maximum resident set size (KB) = 3059188 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +388,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.004819 -The maximum resident set size (KB) = 3009192 +The total amount of wall time = 397.083433 +The maximum resident set size (KB) = 3009132 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +448,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 226.055488 -The maximum resident set size (KB) = 2897452 +The total amount of wall time = 263.378834 +The maximum resident set size (KB) = 2896844 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +508,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 338.823095 -The maximum resident set size (KB) = 3302808 +The total amount of wall time = 485.172066 +The maximum resident set size (KB) = 3304028 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +568,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.644090 -The maximum resident set size (KB) = 2998572 +The total amount of wall time = 556.556252 +The maximum resident set size (KB) = 2996504 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +628,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.316154 -The maximum resident set size (KB) = 2927308 +The total amount of wall time = 396.303633 +The maximum resident set size (KB) = 2932312 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +700,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.970937 -The maximum resident set size (KB) = 2996528 +The total amount of wall time = 424.027302 +The maximum resident set size (KB) = 2998904 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +771,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 274.776986 -The maximum resident set size (KB) = 1579164 +The total amount of wall time = 275.558709 +The maximum resident set size (KB) = 1584524 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +840,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 291.231178 -The maximum resident set size (KB) = 1633136 +The total amount of wall time = 300.596498 +The maximum resident set size (KB) = 1643204 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +909,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 293.565867 -The maximum resident set size (KB) = 1633976 +The total amount of wall time = 348.096929 +The maximum resident set size (KB) = 1629280 Test 013 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +966,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 430.881099 -The maximum resident set size (KB) = 2647484 +The total amount of wall time = 444.662479 +The maximum resident set size (KB) = 2647816 Test 014 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1038,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.845501 -The maximum resident set size (KB) = 2996428 +The total amount of wall time = 405.172772 +The maximum resident set size (KB) = 2997716 Test 015 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1056,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.284615 -The maximum resident set size (KB) = 566432 +The total amount of wall time = 227.709223 +The maximum resident set size (KB) = 564720 Test 016 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1090,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.342882 -The maximum resident set size (KB) = 514448 +The total amount of wall time = 153.916531 +The maximum resident set size (KB) = 518416 Test 017 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1112,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.427321 -The maximum resident set size (KB) = 525892 +The total amount of wall time = 179.978505 +The maximum resident set size (KB) = 523216 Test 018 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1130,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.463431 -The maximum resident set size (KB) = 518104 +The total amount of wall time = 147.552980 +The maximum resident set size (KB) = 521052 Test 019 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,14 +1148,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.786207 -The maximum resident set size (KB) = 515932 +The total amount of wall time = 137.138661 +The maximum resident set size (KB) = 517788 Test 020 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1195,14 +1194,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 325.578183 -The maximum resident set size (KB) = 674216 +The total amount of wall time = 339.886992 +The maximum resident set size (KB) = 674472 Test 021 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1212,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.109768 -The maximum resident set size (KB) = 620536 +The total amount of wall time = 579.597354 +The maximum resident set size (KB) = 620720 Test 022 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1230,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.018023 -The maximum resident set size (KB) = 1069624 +The total amount of wall time = 731.134533 +The maximum resident set size (KB) = 1073096 Test 023 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1281,14 +1280,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 500.259363 -The maximum resident set size (KB) = 1169948 +The total amount of wall time = 533.338996 +The maximum resident set size (KB) = 1173564 Test 024 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1298,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.332424 -The maximum resident set size (KB) = 522632 +The total amount of wall time = 109.365669 +The maximum resident set size (KB) = 523636 Test 025 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.065911 -The maximum resident set size (KB) = 353288 +The total amount of wall time = 48.959150 +The maximum resident set size (KB) = 350824 Test 026 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1330,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.042337 -The maximum resident set size (KB) = 523380 +The total amount of wall time = 94.939206 +The maximum resident set size (KB) = 522988 Test 027 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1352,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.745347 -The maximum resident set size (KB) = 519812 +The total amount of wall time = 147.082928 +The maximum resident set size (KB) = 518036 Test 028 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1374,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.100046 -The maximum resident set size (KB) = 516852 +The total amount of wall time = 152.091989 +The maximum resident set size (KB) = 517328 Test 029 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1429,14 +1428,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 173.427787 -The maximum resident set size (KB) = 1489728 +The total amount of wall time = 203.839476 +The maximum resident set size (KB) = 1499612 Test 030 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1475,14 +1474,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 97.128004 -The maximum resident set size (KB) = 704104 +The total amount of wall time = 96.160160 +The maximum resident set size (KB) = 705996 Test 031 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1528,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 174.767129 -The maximum resident set size (KB) = 1504704 +The total amount of wall time = 186.257510 +The maximum resident set size (KB) = 1498856 Test 032 control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1575,14 +1574,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 96.837277 -The maximum resident set size (KB) = 671852 +The total amount of wall time = 105.380307 +The maximum resident set size (KB) = 672028 Test 033 control_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1625,14 +1624,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 180.425138 -The maximum resident set size (KB) = 1493924 +The total amount of wall time = 185.028980 +The maximum resident set size (KB) = 1494108 Test 034 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1675,14 +1674,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 151.756312 -The maximum resident set size (KB) = 1575628 +The total amount of wall time = 167.562534 +The maximum resident set size (KB) = 1579152 Test 035 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1700,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 311.949677 -The maximum resident set size (KB) = 1498924 +The total amount of wall time = 380.735238 +The maximum resident set size (KB) = 1495600 Test 036 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1755,14 +1754,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 232.406240 -The maximum resident set size (KB) = 1547424 +The total amount of wall time = 242.782194 +The maximum resident set size (KB) = 1552536 Test 037 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,14 +1808,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 175.371417 -The maximum resident set size (KB) = 1503752 +The total amount of wall time = 192.541357 +The maximum resident set size (KB) = 1493568 Test 038 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,14 +1862,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 198.661041 -The maximum resident set size (KB) = 1499712 +The total amount of wall time = 222.365086 +The maximum resident set size (KB) = 1503468 Test 039 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1880,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 275.223915 -The maximum resident set size (KB) = 873148 +The total amount of wall time = 287.837850 +The maximum resident set size (KB) = 875476 Test 040 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.857697 -The maximum resident set size (KB) = 868968 +The total amount of wall time = 155.082096 +The maximum resident set size (KB) = 864236 Test 041 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1912,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.715005 -The maximum resident set size (KB) = 875348 +The total amount of wall time = 295.773627 +The maximum resident set size (KB) = 870196 Test 042 regional_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.878702 -The maximum resident set size (KB) = 870224 +The total amount of wall time = 151.923764 +The maximum resident set size (KB) = 870792 Test 043 regional_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1944,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.286101 -The maximum resident set size (KB) = 866448 +The total amount of wall time = 311.027104 +The maximum resident set size (KB) = 871524 Test 044 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,14 +1962,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.167160 -The maximum resident set size (KB) = 912640 +The total amount of wall time = 287.882295 +The maximum resident set size (KB) = 912964 Test 045 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1978,14 +1977,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 272.734234 -The maximum resident set size (KB) = 1142732 +The total amount of wall time = 291.918291 +The maximum resident set size (KB) = 1147676 Test 046 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1995,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.277615 -The maximum resident set size (KB) = 874940 +The total amount of wall time = 292.943589 +The maximum resident set size (KB) = 876272 Test 047 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2013,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 355.519339 -The maximum resident set size (KB) = 625088 +The total amount of wall time = 382.971706 +The maximum resident set size (KB) = 622748 Test 048 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2031,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.904120 -The maximum resident set size (KB) = 869264 +The total amount of wall time = 323.791537 +The maximum resident set size (KB) = 870256 Test 049 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2049,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 326.595796 -The maximum resident set size (KB) = 865988 +The total amount of wall time = 351.180508 +The maximum resident set size (KB) = 866296 Test 050 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2067,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 187.801231 -The maximum resident set size (KB) = 910136 +The total amount of wall time = 263.993402 +The maximum resident set size (KB) = 911596 Test 051 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2121,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.438614 -The maximum resident set size (KB) = 899472 +The total amount of wall time = 420.639330 +The maximum resident set size (KB) = 900212 Test 052 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2139,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.649455 -The maximum resident set size (KB) = 1000324 +The total amount of wall time = 234.967206 +The maximum resident set size (KB) = 1006040 Test 053 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2194,14 +2193,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 417.147119 -The maximum resident set size (KB) = 903368 +The total amount of wall time = 434.949395 +The maximum resident set size (KB) = 900684 Test 054 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2248,14 +2247,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 363.962471 -The maximum resident set size (KB) = 980244 +The total amount of wall time = 376.880851 +The maximum resident set size (KB) = 981928 Test 055 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2294,14 +2293,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 206.194143 -The maximum resident set size (KB) = 812680 +The total amount of wall time = 208.624440 +The maximum resident set size (KB) = 812340 Test 056 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2347,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 403.056892 -The maximum resident set size (KB) = 896656 +The total amount of wall time = 430.536529 +The maximum resident set size (KB) = 897300 Test 057 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2402,14 +2401,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 420.452813 -The maximum resident set size (KB) = 897076 +The total amount of wall time = 443.786265 +The maximum resident set size (KB) = 902952 Test 058 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2448,14 +2447,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 299.977097 -The maximum resident set size (KB) = 821296 +The total amount of wall time = 305.066457 +The maximum resident set size (KB) = 821876 Test 059 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2502,14 +2501,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 387.153530 -The maximum resident set size (KB) = 894060 +The total amount of wall time = 413.345170 +The maximum resident set size (KB) = 896696 Test 060 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2556,14 +2555,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 384.624896 -The maximum resident set size (KB) = 909900 +The total amount of wall time = 405.126486 +The maximum resident set size (KB) = 911188 Test 061 hrrr_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2610,14 +2609,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 400.284404 -The maximum resident set size (KB) = 897016 +The total amount of wall time = 431.686530 +The maximum resident set size (KB) = 896844 Test 062 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2664,42 +2663,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 345.885686 -The maximum resident set size (KB) = 976372 +The total amount of wall time = 349.444184 +The maximum resident set size (KB) = 971852 Test 063 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.807367 -The maximum resident set size (KB) = 769876 +The total amount of wall time = 295.658419 +The maximum resident set size (KB) = 770184 Test 064 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 289.404516 -The maximum resident set size (KB) = 678616 +The total amount of wall time = 302.519888 +The maximum resident set size (KB) = 677816 Test 065 hrrr_control_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2745,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 396.695750 -The maximum resident set size (KB) = 896804 +The total amount of wall time = 426.537346 +The maximum resident set size (KB) = 897272 Test 066 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2767,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.869293 -The maximum resident set size (KB) = 587324 +The total amount of wall time = 493.145560 +The maximum resident set size (KB) = 586764 Test 067 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2789,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 450.345426 -The maximum resident set size (KB) = 578736 +The total amount of wall time = 483.734404 +The maximum resident set size (KB) = 578260 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_gf_intel Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2844,14 +2843,14 @@ Checking test 069 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.702974 -The maximum resident set size (KB) = 897384 +The total amount of wall time = 427.533004 +The maximum resident set size (KB) = 899060 Test 069 hrrr_gf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_c3_intel Checking test 070 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2897,14 @@ Checking test 070 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.677751 -The maximum resident set size (KB) = 898712 +The total amount of wall time = 438.471560 +The maximum resident set size (KB) = 900156 Test 070 hrrr_c3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmg_intel Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2916,14 +2915,14 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 340.602366 -The maximum resident set size (KB) = 584664 +The total amount of wall time = 355.968132 +The maximum resident set size (KB) = 584456 Test 071 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2934,14 +2933,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.568399 -The maximum resident set size (KB) = 582908 +The total amount of wall time = 339.913848 +The maximum resident set size (KB) = 583160 Test 072 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2952,26 +2951,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.120242 -The maximum resident set size (KB) = 551616 +The total amount of wall time = 192.985773 +The maximum resident set size (KB) = 552036 Test 073 control_ras_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.639614 -The maximum resident set size (KB) = 330528 +The total amount of wall time = 124.800357 +The maximum resident set size (KB) = 332920 Test 074 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3017,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 170.603258 -The maximum resident set size (KB) = 1499024 +The total amount of wall time = 177.732077 +The maximum resident set size (KB) = 1495488 Test 075 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3036,14 +3035,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.824676 -The maximum resident set size (KB) = 869672 +The total amount of wall time = 284.134259 +The maximum resident set size (KB) = 872432 Test 076 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3070,348 +3069,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.697841 -The maximum resident set size (KB) = 681556 +The total amount of wall time = 166.957811 +The maximum resident set size (KB) = 676856 Test 077 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.238357 -The maximum resident set size (KB) = 679400 +The total amount of wall time = 167.464553 +The maximum resident set size (KB) = 682300 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.890325 -The maximum resident set size (KB) = 686868 +The total amount of wall time = 187.783003 +The maximum resident set size (KB) = 684944 Test 079 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.018968 -The maximum resident set size (KB) = 689652 +The total amount of wall time = 166.779911 +The maximum resident set size (KB) = 684956 Test 080 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.360834 -The maximum resident set size (KB) = 717560 +The total amount of wall time = 256.101939 +The maximum resident set size (KB) = 717824 Test 081 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.633070 -The maximum resident set size (KB) = 721992 +The total amount of wall time = 250.437261 +The maximum resident set size (KB) = 721684 Test 082 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.238405 -The maximum resident set size (KB) = 700384 +The total amount of wall time = 165.256778 +The maximum resident set size (KB) = 695268 Test 083 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.329095 -The maximum resident set size (KB) = 738340 +The total amount of wall time = 166.693785 +The maximum resident set size (KB) = 741564 Test 084 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.099600 -The maximum resident set size (KB) = 1513432 +The total amount of wall time = 190.909451 +The maximum resident set size (KB) = 1508640 Test 085 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1042.387506 -The maximum resident set size (KB) = 893880 +The total amount of wall time = 1054.792316 +The maximum resident set size (KB) = 892208 Test 086 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.512582 -The maximum resident set size (KB) = 1062188 +The total amount of wall time = 307.121617 +The maximum resident set size (KB) = 1058788 Test 087 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.607597 -The maximum resident set size (KB) = 1056644 +The total amount of wall time = 305.420838 +The maximum resident set size (KB) = 1057900 Test 088 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.030908 -The maximum resident set size (KB) = 1057956 +The total amount of wall time = 313.135253 +The maximum resident set size (KB) = 1057408 Test 089 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.070281 -The maximum resident set size (KB) = 1139768 +The total amount of wall time = 324.980330 +The maximum resident set size (KB) = 1139944 Test 090 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.059740 -The maximum resident set size (KB) = 1056784 +The total amount of wall time = 318.288507 +The maximum resident set size (KB) = 1060356 Test 091 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.166225 -The maximum resident set size (KB) = 1059772 +The total amount of wall time = 314.165285 +The maximum resident set size (KB) = 1055908 Test 092 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.183429 -The maximum resident set size (KB) = 1061520 +The total amount of wall time = 312.925908 +The maximum resident set size (KB) = 1058744 Test 093 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.663446 -The maximum resident set size (KB) = 1057416 +The total amount of wall time = 311.809893 +The maximum resident set size (KB) = 1061092 Test 094 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.520033 -The maximum resident set size (KB) = 1054248 +The total amount of wall time = 306.897821 +The maximum resident set size (KB) = 1057632 Test 095 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.328173 -The maximum resident set size (KB) = 1060060 +The total amount of wall time = 312.978943 +The maximum resident set size (KB) = 1054480 Test 096 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.328025 -The maximum resident set size (KB) = 1053696 +The total amount of wall time = 494.798426 +The maximum resident set size (KB) = 1054612 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.372830 -The maximum resident set size (KB) = 1054868 +The total amount of wall time = 307.555157 +The maximum resident set size (KB) = 1053656 Test 098 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 355.344816 -The maximum resident set size (KB) = 1058516 +The total amount of wall time = 363.530712 +The maximum resident set size (KB) = 1061788 Test 099 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.517740 -The maximum resident set size (KB) = 1059480 +The total amount of wall time = 306.141049 +The maximum resident set size (KB) = 1059396 Test 100 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.424609 -The maximum resident set size (KB) = 362408 +The total amount of wall time = 295.977579 +The maximum resident set size (KB) = 359368 Test 101 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3421,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.825617 -The maximum resident set size (KB) = 894324 +The total amount of wall time = 221.519475 +The maximum resident set size (KB) = 899936 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,14 +3475,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 336.271138 -The maximum resident set size (KB) = 777460 +The total amount of wall time = 336.805955 +The maximum resident set size (KB) = 785308 Test 103 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3530,14 +3529,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 176.205518 -The maximum resident set size (KB) = 778904 +The total amount of wall time = 176.776711 +The maximum resident set size (KB) = 774944 Test 104 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3583,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 177.266445 -The maximum resident set size (KB) = 789604 +The total amount of wall time = 179.030952 +The maximum resident set size (KB) = 788684 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3637,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 302.931847 -The maximum resident set size (KB) = 834656 +The total amount of wall time = 309.109547 +The maximum resident set size (KB) = 833596 Test 106 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3691,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 157.890284 -The maximum resident set size (KB) = 827064 +The total amount of wall time = 165.417627 +The maximum resident set size (KB) = 825856 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3745,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 184.204772 -The maximum resident set size (KB) = 781896 +The total amount of wall time = 182.840969 +The maximum resident set size (KB) = 780736 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3792,42 +3791,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 247.543761 -The maximum resident set size (KB) = 710808 +The total amount of wall time = 254.266536 +The maximum resident set size (KB) = 710156 Test 109 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.620689 -The maximum resident set size (KB) = 670800 +The total amount of wall time = 98.538973 +The maximum resident set size (KB) = 671468 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.166688 -The maximum resident set size (KB) = 637296 +The total amount of wall time = 101.876253 +The maximum resident set size (KB) = 633152 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3843,40 +3842,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 123.066574 -The maximum resident set size (KB) = 1062792 +The total amount of wall time = 115.086287 +The maximum resident set size (KB) = 1066900 Test 112 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 63.406539 -The maximum resident set size (KB) = 1064876 +The total amount of wall time = 79.868609 +The maximum resident set size (KB) = 1064628 Test 113 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 82.590988 -The maximum resident set size (KB) = 959284 +The total amount of wall time = 70.338831 +The maximum resident set size (KB) = 960372 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3923,123 +3922,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 229.080592 -The maximum resident set size (KB) = 811048 +The total amount of wall time = 228.967177 +The maximum resident set size (KB) = 812328 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.131160 -The maximum resident set size (KB) = 941668 +The total amount of wall time = 293.265329 +The maximum resident set size (KB) = 945180 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.087083 -The maximum resident set size (KB) = 940348 +The total amount of wall time = 285.699209 +The maximum resident set size (KB) = 940560 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 883.880674 -The maximum resident set size (KB) = 1092040 +The total amount of wall time = 886.567999 +The maximum resident set size (KB) = 1094880 Test 118 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 510.467249 -The maximum resident set size (KB) = 1098028 +The total amount of wall time = 535.546961 +The maximum resident set size (KB) = 1098008 Test 119 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 887.471037 -The maximum resident set size (KB) = 1160152 +The total amount of wall time = 904.997676 +The maximum resident set size (KB) = 1167692 Test 120 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.463148 -The maximum resident set size (KB) = 963156 +The total amount of wall time = 312.270470 +The maximum resident set size (KB) = 964564 Test 121 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 250.107757 -The maximum resident set size (KB) = 1122040 +The total amount of wall time = 290.822128 +The maximum resident set size (KB) = 1122204 Test 122 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 285.629258 -The maximum resident set size (KB) = 1473500 +The total amount of wall time = 772.809320 +The maximum resident set size (KB) = 1480400 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4048,14 +4047,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 378.149850 -The maximum resident set size (KB) = 1101172 +The total amount of wall time = 414.963006 +The maximum resident set size (KB) = 1106244 Test 124 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4063,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 697.900720 -The maximum resident set size (KB) = 1195344 +The total amount of wall time = 782.450892 +The maximum resident set size (KB) = 1195056 Test 125 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,14 +4081,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 882.746362 -The maximum resident set size (KB) = 1164044 +The total amount of wall time = 929.748932 +The maximum resident set size (KB) = 1167116 Test 126 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4111,14 +4110,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 308.028506 -The maximum resident set size (KB) = 539988 +The total amount of wall time = 322.641931 +The maximum resident set size (KB) = 540248 Test 127 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4140,14 +4139,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 329.468529 -The maximum resident set size (KB) = 390412 +The total amount of wall time = 509.424705 +The maximum resident set size (KB) = 389232 Test 128 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,14 +4155,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 374.108758 -The maximum resident set size (KB) = 549984 +The total amount of wall time = 450.872144 +The maximum resident set size (KB) = 546192 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4209,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 161.371398 -The maximum resident set size (KB) = 310860 +The total amount of wall time = 207.596580 +The maximum resident set size (KB) = 307964 Test 130 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4264,14 +4263,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 168.654618 -The maximum resident set size (KB) = 294540 +The total amount of wall time = 184.032350 +The maximum resident set size (KB) = 290764 Test 131 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,14 +4352,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 461.665131 -The maximum resident set size (KB) = 377060 +The total amount of wall time = 454.181429 +The maximum resident set size (KB) = 377904 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4442,14 +4441,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 507.222095 -The maximum resident set size (KB) = 389124 +The total amount of wall time = 495.680243 +The maximum resident set size (KB) = 386784 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,14 +4457,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 205.423325 -The maximum resident set size (KB) = 538324 +The total amount of wall time = 229.704985 +The maximum resident set size (KB) = 557952 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4487,14 +4486,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 192.594800 -The maximum resident set size (KB) = 552780 +The total amount of wall time = 219.221153 +The maximum resident set size (KB) = 553492 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4516,14 +4515,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 216.804277 -The maximum resident set size (KB) = 424996 +The total amount of wall time = 258.932440 +The maximum resident set size (KB) = 421272 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4532,60 +4531,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 247.436182 -The maximum resident set size (KB) = 606492 +The total amount of wall time = 244.640673 +The maximum resident set size (KB) = 617236 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 82.701990 -The maximum resident set size (KB) = 326872 +The total amount of wall time = 81.354996 +The maximum resident set size (KB) = 324656 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 805.409258 -The maximum resident set size (KB) = 607276 +The total amount of wall time = 801.094002 +The maximum resident set size (KB) = 624660 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 499.705446 -The maximum resident set size (KB) = 662616 - -Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4574,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 348.262106 -The maximum resident set size (KB) = 1092328 +The total amount of wall time = 393.557010 +The maximum resident set size (KB) = 1092556 Test 141 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4608,131 +4589,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 350.980776 -The maximum resident set size (KB) = 1069816 +The total amount of wall time = 410.110568 +The maximum resident set size (KB) = 1073112 Test 142 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 942.634627 -The maximum resident set size (KB) = 885864 +The total amount of wall time = 984.056078 +The maximum resident set size (KB) = 886596 Test 143 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.153843 -The maximum resident set size (KB) = 740660 +The total amount of wall time = 156.163541 +The maximum resident set size (KB) = 739492 Test 144 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_restart_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 87.690103 -The maximum resident set size (KB) = 729192 +The total amount of wall time = 110.056785 +The maximum resident set size (KB) = 728104 Test 145 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.814162 -The maximum resident set size (KB) = 618888 +The total amount of wall time = 137.601717 +The maximum resident set size (KB) = 619392 Test 146 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.425781 -The maximum resident set size (KB) = 622324 +The total amount of wall time = 143.629308 +The maximum resident set size (KB) = 621312 Test 147 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.483497 -The maximum resident set size (KB) = 621316 +The total amount of wall time = 149.351145 +The maximum resident set size (KB) = 619220 Test 148 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.363204 -The maximum resident set size (KB) = 740356 +The total amount of wall time = 172.265648 +The maximum resident set size (KB) = 726864 Test 149 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.968171 -The maximum resident set size (KB) = 726436 +The total amount of wall time = 166.408250 +The maximum resident set size (KB) = 737872 Test 150 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.297238 -The maximum resident set size (KB) = 625684 +The total amount of wall time = 162.045014 +The maximum resident set size (KB) = 623012 Test 151 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4741,14 +4722,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 422.416519 -The maximum resident set size (KB) = 577660 +The total amount of wall time = 437.696803 +The maximum resident set size (KB) = 584064 Test 152 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4757,64 +4738,64 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 421.497447 -The maximum resident set size (KB) = 566848 +The total amount of wall time = 438.531801 +The maximum resident set size (KB) = 564360 Test 153 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.861423 -The maximum resident set size (KB) = 739744 +The total amount of wall time = 156.381083 +The maximum resident set size (KB) = 739376 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 256.713703 -The maximum resident set size (KB) = 1983108 +The total amount of wall time = 272.067513 +The maximum resident set size (KB) = 1983424 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 257.322310 -The maximum resident set size (KB) = 1984304 +The total amount of wall time = 272.494427 +The maximum resident set size (KB) = 1985468 Test 156 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_cfsr_faster_intel Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.717470 -The maximum resident set size (KB) = 740320 +The total amount of wall time = 153.622900 +The maximum resident set size (KB) = 737980 Test 157 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_lnd_gswp3_intel Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4823,14 +4804,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.354710 -The maximum resident set size (KB) = 224600 +The total amount of wall time = 28.404533 +The maximum resident set size (KB) = 218564 Test 158 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_lnd_gswp3_rst_intel Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4839,14 +4820,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.651372 -The maximum resident set size (KB) = 225412 +The total amount of wall time = 31.160765 +The maximum resident set size (KB) = 224916 Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_atmlnd_sbs_intel Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4931,14 +4912,14 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 233.721551 -The maximum resident set size (KB) = 1557532 +The total amount of wall time = 233.811857 +The maximum resident set size (KB) = 1552616 -Test 160 control_p8_atmlnd_sbs_intel PASS +Test 160 control_p8_atmlnd_sbs_intel PASS Tries: 2 baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmwav_control_noaero_p8_intel Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4981,14 +4962,14 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 106.801324 -The maximum resident set size (KB) = 1534048 +The total amount of wall time = 103.614017 +The maximum resident set size (KB) = 1541620 Test 161 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_atmwav_intel Checking test 162 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5032,14 +5013,14 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.527405 -The maximum resident set size (KB) = 543748 +The total amount of wall time = 101.525871 +The maximum resident set size (KB) = 549788 Test 162 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_intel Checking test 163 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5083,14 +5064,14 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 248.140178 -The maximum resident set size (KB) = 2831944 +The total amount of wall time = 271.262476 +The maximum resident set size (KB) = 2830500 Test 163 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_rad_intel Checking test 164 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5134,14 +5115,14 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 284.037584 -The maximum resident set size (KB) = 2892252 +The total amount of wall time = 314.457851 +The maximum resident set size (KB) = 2892004 Test 164 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_rad_micro_intel Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5185,14 +5166,14 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 288.410760 -The maximum resident set size (KB) = 2900536 +The total amount of wall time = 321.515013 +The maximum resident set size (KB) = 2902844 Test 165 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_atmaq_intel Checking test 166 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5208,14 +5189,14 @@ Checking test 166 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 669.408947 -The maximum resident set size (KB) = 5321388 +The total amount of wall time = 737.111190 +The maximum resident set size (KB) = 5325524 Test 166 regional_atmaq_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_136597/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_atmaq_debug_intel Checking test 167 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5229,12 +5210,54 @@ Checking test 167 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 1308.895309 -The maximum resident set size (KB) = 4835692 +The total amount of wall time = 1421.352360 +The maximum resident set size (KB) = 4835800 Test 167 regional_atmaq_debug_intel PASS +FAILED TESTS: +compile_hafsw_faster_intel failed in run_compile + +REGRESSION TEST FAILED +Fri Sep 15 19:44:47 UTC 2023 +Elapsed time: 03h:33m:31s. Have a nice day! +Fri Sep 15 20:01:44 UTC 2023 +Start Regression test + +Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile hafsw_faster_intel elapsed time 530 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9790/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 500.600416 +The maximum resident set size (KB) = 665108 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Wed Sep 13 15:32:20 UTC 2023 -Elapsed time: 01h:49m:22s. Have a nice day! +Fri Sep 15 20:22:39 UTC 2023 +Elapsed time: 00h:20m:57s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 29efd07a21..593fa95cd5 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Tue 12 Sep 2023 07:58:26 PM EDT +Fri 15 Sep 2023 08:05:08 PM EDT Start Regression test -Testing UFSWM Hash: c7edaf94b82a877d0f34bfb2b9e358d7415fa8b1 +Testing UFSWM Hash: a5012ee7030309bc386e1caea0febb9130e2cdd5 Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 710 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 637 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 286 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 799 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 687 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 685 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 704 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 230 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 235 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 672 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 772 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 712 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 851 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 791 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 801 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 763 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 868 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 288 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1307 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 885 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 283 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 809 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_p8_mixedmode_intel + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaero_intel elapsed time 677 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 713 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 660 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 801 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 701 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 649 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 219 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 731 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 721 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 691 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 803 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 791 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 814 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 885 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1214 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 833 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.280906 - 0: The maximum resident set size (KB) = 1568144 + 0: The total amount of wall time = 325.015670 + 0: The maximum resident set size (KB) = 1568460 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.000845 - 0: The maximum resident set size (KB) = 1466448 + 0: The total amount of wall time = 237.799919 + 0: The maximum resident set size (KB) = 1466980 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.341342 - 0: The maximum resident set size (KB) = 1602688 + 0: The total amount of wall time = 371.526957 + 0: The maximum resident set size (KB) = 1602400 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.509867 - 0: The maximum resident set size (KB) = 1489476 + 0: The total amount of wall time = 206.705047 + 0: The maximum resident set size (KB) = 1489264 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.942906 - 0: The maximum resident set size (KB) = 1613432 + 0: The total amount of wall time = 376.957469 + 0: The maximum resident set size (KB) = 1613256 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 210.148723 - 0: The maximum resident set size (KB) = 1324080 + 0: The total amount of wall time = 217.628792 + 0: The maximum resident set size (KB) = 1324552 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.803264 - 0: The maximum resident set size (KB) = 1839032 + 0: The total amount of wall time = 355.875634 + 0: The maximum resident set size (KB) = 1826848 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.769868 - 0: The maximum resident set size (KB) = 1599212 + 0: The total amount of wall time = 367.833355 + 0: The maximum resident set size (KB) = 1598588 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.212296 - 0: The maximum resident set size (KB) = 1558808 + 0: The total amount of wall time = 303.046345 + 0: The maximum resident set size (KB) = 1559124 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 661.592878 - 0: The maximum resident set size (KB) = 3071648 + 0: The total amount of wall time = 668.038295 + 0: The maximum resident set size (KB) = 3071716 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 496.135981 - 0: The maximum resident set size (KB) = 2998812 + 0: The total amount of wall time = 491.196405 + 0: The maximum resident set size (KB) = 2995232 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 276.188611 - 0: The maximum resident set size (KB) = 1485076 + 0: The total amount of wall time = 278.755326 + 0: The maximum resident set size (KB) = 1485236 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 284.983688 - 0: The maximum resident set size (KB) = 1521208 + 0: The total amount of wall time = 285.932566 + 0: The maximum resident set size (KB) = 1520880 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 543.512932 - 0: The maximum resident set size (KB) = 1603944 + 0: The total amount of wall time = 535.174519 + 0: The maximum resident set size (KB) = 1603048 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.543445 - 0: The maximum resident set size (KB) = 1504860 + 0: The total amount of wall time = 364.615650 + 0: The maximum resident set size (KB) = 1505072 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 286.145456 - 0: The maximum resident set size (KB) = 1521780 + 0: The total amount of wall time = 285.001767 + 0: The maximum resident set size (KB) = 1521888 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 606.984533 - 0: The maximum resident set size (KB) = 2591416 + 0: The total amount of wall time = 600.695872 + 0: The maximum resident set size (KB) = 2591248 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.834526 - 0: The maximum resident set size (KB) = 1602736 + 0: The total amount of wall time = 357.971179 + 0: The maximum resident set size (KB) = 1602096 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 217.500314 - 0: The maximum resident set size (KB) = 496008 + 0: The total amount of wall time = 216.630213 + 0: The maximum resident set size (KB) = 496064 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 140.645132 - 0: The maximum resident set size (KB) = 448192 + 0: The total amount of wall time = 140.244138 + 0: The maximum resident set size (KB) = 448392 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.960321 - 0: The maximum resident set size (KB) = 451564 + 0: The total amount of wall time = 163.597323 + 0: The maximum resident set size (KB) = 452392 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.444646 - 0: The maximum resident set size (KB) = 448220 + 0: The total amount of wall time = 143.389245 + 0: The maximum resident set size (KB) = 448160 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.476984 - 0: The maximum resident set size (KB) = 448328 + 0: The total amount of wall time = 155.391772 + 0: The maximum resident set size (KB) = 448172 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 420.007363 -0: The maximum resident set size (KB) = 651648 +0: The total amount of wall time = 417.415218 +0: The maximum resident set size (KB) = 651540 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 573.640002 - 0: The maximum resident set size (KB) = 554128 + 0: The total amount of wall time = 573.813682 + 0: The maximum resident set size (KB) = 554180 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1089.951172 - 0: The maximum resident set size (KB) = 946196 + 0: The total amount of wall time = 1085.900230 + 0: The maximum resident set size (KB) = 946580 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 923.803706 - 0: The maximum resident set size (KB) = 1073956 + 0: The total amount of wall time = 928.453172 + 0: The maximum resident set size (KB) = 1073792 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 96.988680 - 0: The maximum resident set size (KB) = 454728 + 0: The total amount of wall time = 95.988560 + 0: The maximum resident set size (KB) = 454748 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.828527 - 0: The maximum resident set size (KB) = 268908 + 0: The total amount of wall time = 51.102098 + 0: The maximum resident set size (KB) = 269204 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.169775 - 0: The maximum resident set size (KB) = 452600 + 0: The total amount of wall time = 92.075741 + 0: The maximum resident set size (KB) = 452748 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.233283 - 0: The maximum resident set size (KB) = 448196 + 0: The total amount of wall time = 147.033629 + 0: The maximum resident set size (KB) = 448084 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.629165 - 0: The maximum resident set size (KB) = 448116 + 0: The total amount of wall time = 145.613752 + 0: The maximum resident set size (KB) = 448164 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 182.028149 - 0: The maximum resident set size (KB) = 1419696 + 0: The total amount of wall time = 178.303082 + 0: The maximum resident set size (KB) = 1419508 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 96.752130 - 0: The maximum resident set size (KB) = 623740 + 0: The total amount of wall time = 95.514177 + 0: The maximum resident set size (KB) = 623508 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 180.559843 - 0: The maximum resident set size (KB) = 1426992 + 0: The total amount of wall time = 180.534151 + 0: The maximum resident set size (KB) = 1426928 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 96.909474 - 0: The maximum resident set size (KB) = 597044 + 0: The total amount of wall time = 97.298870 + 0: The maximum resident set size (KB) = 597080 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 184.781311 - 0: The maximum resident set size (KB) = 1413776 + 0: The total amount of wall time = 186.781477 + 0: The maximum resident set size (KB) = 1413308 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.808586 - 0: The maximum resident set size (KB) = 1500616 + 0: The total amount of wall time = 172.241659 + 0: The maximum resident set size (KB) = 1499360 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 328.668336 - 0: The maximum resident set size (KB) = 1420016 + 0: The total amount of wall time = 329.256940 + 0: The maximum resident set size (KB) = 1420048 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 245.956890 - 0: The maximum resident set size (KB) = 1473096 + 0: The total amount of wall time = 241.448752 + 0: The maximum resident set size (KB) = 1473164 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 189.473264 - 0: The maximum resident set size (KB) = 1423344 + 0: The total amount of wall time = 183.393832 + 0: The maximum resident set size (KB) = 1423452 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 204.265614 - 0: The maximum resident set size (KB) = 1433512 + 0: The total amount of wall time = 202.776350 + 0: The maximum resident set size (KB) = 1433172 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 326.173105 - 0: The maximum resident set size (KB) = 805652 + 0: The total amount of wall time = 325.008688 + 0: The maximum resident set size (KB) = 805692 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.074275 - 0: The maximum resident set size (KB) = 802848 + 0: The total amount of wall time = 170.930782 + 0: The maximum resident set size (KB) = 802656 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 323.013709 - 0: The maximum resident set size (KB) = 805776 + 0: The total amount of wall time = 325.104945 + 0: The maximum resident set size (KB) = 805820 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.394526 - 0: The maximum resident set size (KB) = 802612 + 0: The total amount of wall time = 165.615540 + 0: The maximum resident set size (KB) = 802888 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.870683 - 0: The maximum resident set size (KB) = 803740 + 0: The total amount of wall time = 342.529104 + 0: The maximum resident set size (KB) = 803648 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.772068 - 0: The maximum resident set size (KB) = 810004 + 0: The total amount of wall time = 200.204200 + 0: The maximum resident set size (KB) = 809192 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 312.965012 - 0: The maximum resident set size (KB) = 1078708 + 0: The total amount of wall time = 328.368012 + 0: The maximum resident set size (KB) = 1077668 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 318.854863 - 0: The maximum resident set size (KB) = 800972 + 0: The total amount of wall time = 320.172182 + 0: The maximum resident set size (KB) = 801008 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.844917 - 0: The maximum resident set size (KB) = 809000 + 0: The total amount of wall time = 330.450480 + 0: The maximum resident set size (KB) = 809152 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 409.781911 - 0: The maximum resident set size (KB) = 549784 + 0: The total amount of wall time = 405.109648 + 0: The maximum resident set size (KB) = 550112 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 456.202033 - 0: The maximum resident set size (KB) = 833520 + 0: The total amount of wall time = 460.372033 + 0: The maximum resident set size (KB) = 825336 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 270.784271 - 0: The maximum resident set size (KB) = 920976 + 0: The total amount of wall time = 267.204612 + 0: The maximum resident set size (KB) = 920580 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 471.633998 - 0: The maximum resident set size (KB) = 824192 + 0: The total amount of wall time = 472.275768 + 0: The maximum resident set size (KB) = 832360 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 432.933711 - 0: The maximum resident set size (KB) = 907024 + 0: The total amount of wall time = 433.318210 + 0: The maximum resident set size (KB) = 911592 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 229.488756 - 0: The maximum resident set size (KB) = 728912 + 0: The total amount of wall time = 232.609655 + 0: The maximum resident set size (KB) = 729500 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 469.799916 - 0: The maximum resident set size (KB) = 825368 + 0: The total amount of wall time = 458.951225 + 0: The maximum resident set size (KB) = 833520 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 471.136704 - 0: The maximum resident set size (KB) = 832308 + 0: The total amount of wall time = 476.177740 + 0: The maximum resident set size (KB) = 832384 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 334.626368 - 0: The maximum resident set size (KB) = 738256 + 0: The total amount of wall time = 338.406316 + 0: The maximum resident set size (KB) = 738468 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 438.017932 - 0: The maximum resident set size (KB) = 830772 + 0: The total amount of wall time = 439.220069 + 0: The maximum resident set size (KB) = 830792 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 439.808618 - 0: The maximum resident set size (KB) = 838300 + 0: The total amount of wall time = 438.377163 + 0: The maximum resident set size (KB) = 838240 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 455.758563 - 0: The maximum resident set size (KB) = 830544 + 0: The total amount of wall time = 453.055487 + 0: The maximum resident set size (KB) = 830428 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 405.919265 - 0: The maximum resident set size (KB) = 904024 + 0: The total amount of wall time = 405.133485 + 0: The maximum resident set size (KB) = 904216 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.410176 - 0: The maximum resident set size (KB) = 685540 + 0: The total amount of wall time = 324.942855 + 0: The maximum resident set size (KB) = 685820 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 323.733631 - 0: The maximum resident set size (KB) = 600884 + 0: The total amount of wall time = 328.148931 + 0: The maximum resident set size (KB) = 601556 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 446.660667 - 0: The maximum resident set size (KB) = 830532 + 0: The total amount of wall time = 453.316451 + 0: The maximum resident set size (KB) = 830524 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 549.938248 - 0: The maximum resident set size (KB) = 504132 + 0: The total amount of wall time = 551.472828 + 0: The maximum resident set size (KB) = 504028 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 533.143675 - 0: The maximum resident set size (KB) = 499608 + 0: The total amount of wall time = 534.519865 + 0: The maximum resident set size (KB) = 499564 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_gf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_gf_intel Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 070 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 457.393677 - 0: The maximum resident set size (KB) = 832908 + 0: The total amount of wall time = 460.720579 + 0: The maximum resident set size (KB) = 824744 Test 070 hrrr_gf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_c3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_c3_intel Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3017,14 +3017,14 @@ Checking test 071 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 456.952348 - 0: The maximum resident set size (KB) = 833020 + 0: The total amount of wall time = 459.657477 + 0: The maximum resident set size (KB) = 824768 Test 071 hrrr_c3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 367.079850 - 0: The maximum resident set size (KB) = 514292 + 0: The total amount of wall time = 366.891659 + 0: The maximum resident set size (KB) = 514228 Test 072 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,26 +3053,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.751643 - 0: The maximum resident set size (KB) = 482544 + 0: The total amount of wall time = 196.941383 + 0: The maximum resident set size (KB) = 482496 Test 073 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 123.067121 - 0: The maximum resident set size (KB) = 257960 + 0: The total amount of wall time = 122.398375 + 0: The maximum resident set size (KB) = 257844 Test 074 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3119,14 +3119,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.386664 - 0: The maximum resident set size (KB) = 1419264 + 0: The total amount of wall time = 168.394316 + 0: The maximum resident set size (KB) = 1419476 Test 075 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3137,14 +3137,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.921592 - 0: The maximum resident set size (KB) = 805472 + 0: The total amount of wall time = 300.860997 + 0: The maximum resident set size (KB) = 805540 Test 076 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3171,348 +3171,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.894112 - 0: The maximum resident set size (KB) = 613252 + 0: The total amount of wall time = 155.207650 + 0: The maximum resident set size (KB) = 613236 Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.060236 - 0: The maximum resident set size (KB) = 612468 + 0: The total amount of wall time = 158.823091 + 0: The maximum resident set size (KB) = 612612 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.115739 - 0: The maximum resident set size (KB) = 616848 + 0: The total amount of wall time = 174.732762 + 0: The maximum resident set size (KB) = 616916 Test 079 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.132124 - 0: The maximum resident set size (KB) = 615592 + 0: The total amount of wall time = 156.656709 + 0: The maximum resident set size (KB) = 615624 Test 080 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.739889 - 0: The maximum resident set size (KB) = 653048 + 0: The total amount of wall time = 246.437628 + 0: The maximum resident set size (KB) = 653200 Test 081 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.072234 - 0: The maximum resident set size (KB) = 653276 + 0: The total amount of wall time = 242.879126 + 0: The maximum resident set size (KB) = 653312 Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.950826 - 0: The maximum resident set size (KB) = 625488 + 0: The total amount of wall time = 157.517309 + 0: The maximum resident set size (KB) = 625472 Test 083 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.949399 - 0: The maximum resident set size (KB) = 668112 + 0: The total amount of wall time = 160.950479 + 0: The maximum resident set size (KB) = 667756 Test 084 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.181919 - 0: The maximum resident set size (KB) = 1436928 + 0: The total amount of wall time = 175.858593 + 0: The maximum resident set size (KB) = 1436900 Test 085 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1028.869747 - 0: The maximum resident set size (KB) = 829948 + 0: The total amount of wall time = 1029.850035 + 0: The maximum resident set size (KB) = 829464 Test 086 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.775110 - 0: The maximum resident set size (KB) = 997412 + 0: The total amount of wall time = 286.118509 + 0: The maximum resident set size (KB) = 997528 Test 087 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.019556 - 0: The maximum resident set size (KB) = 986636 + 0: The total amount of wall time = 274.949389 + 0: The maximum resident set size (KB) = 986692 Test 088 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.312340 - 0: The maximum resident set size (KB) = 997296 + 0: The total amount of wall time = 283.210437 + 0: The maximum resident set size (KB) = 997436 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.209935 - 0: The maximum resident set size (KB) = 1079436 + 0: The total amount of wall time = 296.406307 + 0: The maximum resident set size (KB) = 1079676 Test 090 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.398289 - 0: The maximum resident set size (KB) = 988948 + 0: The total amount of wall time = 287.123725 + 0: The maximum resident set size (KB) = 988988 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.287561 - 0: The maximum resident set size (KB) = 997580 + 0: The total amount of wall time = 287.481329 + 0: The maximum resident set size (KB) = 997564 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.796620 - 0: The maximum resident set size (KB) = 998064 + 0: The total amount of wall time = 285.749373 + 0: The maximum resident set size (KB) = 994116 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.045635 - 0: The maximum resident set size (KB) = 997312 + 0: The total amount of wall time = 282.456054 + 0: The maximum resident set size (KB) = 997336 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.969790 - 0: The maximum resident set size (KB) = 988900 + 0: The total amount of wall time = 276.584884 + 0: The maximum resident set size (KB) = 997120 Test 095 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.349081 - 0: The maximum resident set size (KB) = 988876 + 0: The total amount of wall time = 283.901464 + 0: The maximum resident set size (KB) = 997396 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.185383 - 0: The maximum resident set size (KB) = 996932 + 0: The total amount of wall time = 468.859659 + 0: The maximum resident set size (KB) = 988712 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.786724 - 0: The maximum resident set size (KB) = 994540 + 0: The total amount of wall time = 279.721988 + 0: The maximum resident set size (KB) = 994644 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.357199 - 0: The maximum resident set size (KB) = 1000004 + 0: The total amount of wall time = 347.338318 + 0: The maximum resident set size (KB) = 991928 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.367466 - 0: The maximum resident set size (KB) = 989220 + 0: The total amount of wall time = 283.655680 + 0: The maximum resident set size (KB) = 997388 Test 100 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.839277 - 0: The maximum resident set size (KB) = 288112 + 0: The total amount of wall time = 287.504151 + 0: The maximum resident set size (KB) = 288104 Test 101 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 246.807987 - 0: The maximum resident set size (KB) = 818800 + 0: The total amount of wall time = 244.071364 + 0: The maximum resident set size (KB) = 819676 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3577,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 374.726139 - 0: The maximum resident set size (KB) = 718508 + 0: The total amount of wall time = 373.631109 + 0: The maximum resident set size (KB) = 718608 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3631,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 194.469226 - 0: The maximum resident set size (KB) = 706876 + 0: The total amount of wall time = 192.923688 + 0: The maximum resident set size (KB) = 716680 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3685,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 197.614125 - 0: The maximum resident set size (KB) = 720416 + 0: The total amount of wall time = 193.240142 + 0: The maximum resident set size (KB) = 714068 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3739,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 352.137521 - 0: The maximum resident set size (KB) = 769784 + 0: The total amount of wall time = 348.924831 + 0: The maximum resident set size (KB) = 769860 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 180.840630 - 0: The maximum resident set size (KB) = 767096 + 0: The total amount of wall time = 181.232289 + 0: The maximum resident set size (KB) = 763000 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3847,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 203.004146 - 0: The maximum resident set size (KB) = 715672 + 0: The total amount of wall time = 199.254604 + 0: The maximum resident set size (KB) = 716156 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,42 +3893,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.944066 - 0: The maximum resident set size (KB) = 632088 + 0: The total amount of wall time = 277.932656 + 0: The maximum resident set size (KB) = 632124 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.005133 - 0: The maximum resident set size (KB) = 594412 + 0: The total amount of wall time = 101.990074 + 0: The maximum resident set size (KB) = 594280 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 103.494559 - 0: The maximum resident set size (KB) = 560416 + 0: The total amount of wall time = 103.830063 + 0: The maximum resident set size (KB) = 559708 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,40 +3944,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 131.342061 - 0: The maximum resident set size (KB) = 941092 + 0: The total amount of wall time = 129.027135 + 0: The maximum resident set size (KB) = 941100 Test 112 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 63.412003 - 0: The maximum resident set size (KB) = 947800 + 0: The total amount of wall time = 62.916753 + 0: The maximum resident set size (KB) = 947496 Test 113 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.661590 - 0: The maximum resident set size (KB) = 887620 + 0: The total amount of wall time = 72.642910 + 0: The maximum resident set size (KB) = 887624 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,123 +4024,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 255.459333 - 0: The maximum resident set size (KB) = 728964 + 0: The total amount of wall time = 253.189669 + 0: The maximum resident set size (KB) = 728780 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.152648 - 0: The maximum resident set size (KB) = 873568 + 0: The total amount of wall time = 283.131034 + 0: The maximum resident set size (KB) = 881796 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.207402 - 0: The maximum resident set size (KB) = 880692 + 0: The total amount of wall time = 275.664741 + 0: The maximum resident set size (KB) = 880700 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 879.420693 - 0: The maximum resident set size (KB) = 974444 + 0: The total amount of wall time = 875.019468 + 0: The maximum resident set size (KB) = 974568 Test 118 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 502.016929 - 0: The maximum resident set size (KB) = 981172 + 0: The total amount of wall time = 500.947558 + 0: The maximum resident set size (KB) = 981356 Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/conus13km_radar_tten_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 875.223775 - 0: The maximum resident set size (KB) = 1042372 + 0: The total amount of wall time = 875.321203 + 0: The maximum resident set size (KB) = 1042216 Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.425840 - 0: The maximum resident set size (KB) = 884772 + 0: The total amount of wall time = 287.093871 + 0: The maximum resident set size (KB) = 884972 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.197313 - 0: The maximum resident set size (KB) = 879304 + 0: The total amount of wall time = 239.876665 + 0: The maximum resident set size (KB) = 880280 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 278.392450 - 0: The maximum resident set size (KB) = 1203472 + 0: The total amount of wall time = 280.183262 + 0: The maximum resident set size (KB) = 1208376 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 431.257472 - 0: The maximum resident set size (KB) = 911152 + 0: The total amount of wall time = 422.476191 + 0: The maximum resident set size (KB) = 907632 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,14 +4165,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 908.665172 - 0: The maximum resident set size (KB) = 929920 + 0: The total amount of wall time = 910.991934 + 0: The maximum resident set size (KB) = 937432 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,14 +4183,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1027.829321 - 0: The maximum resident set size (KB) = 961848 + 0: The total amount of wall time = 1019.406071 + 0: The maximum resident set size (KB) = 959736 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 338.325337 - 0: The maximum resident set size (KB) = 428036 + 0: The total amount of wall time = 338.911686 + 0: The maximum resident set size (KB) = 428040 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4241,14 +4241,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 424.361978 - 0: The maximum resident set size (KB) = 298312 + 0: The total amount of wall time = 413.723871 + 0: The maximum resident set size (KB) = 299304 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4257,14 +4257,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 387.613262 - 0: The maximum resident set size (KB) = 438896 + 0: The total amount of wall time = 387.088369 + 0: The maximum resident set size (KB) = 438528 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.714287 - 0: The maximum resident set size (KB) = 233712 + 0: The total amount of wall time = 155.439732 + 0: The maximum resident set size (KB) = 233784 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.239622 - 0: The maximum resident set size (KB) = 216304 + 0: The total amount of wall time = 241.985608 + 0: The maximum resident set size (KB) = 216212 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 438.211205 - 0: The maximum resident set size (KB) = 258088 + 0: The total amount of wall time = 435.418871 + 0: The maximum resident set size (KB) = 258452 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4543,14 +4543,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 745.372229 - 0: The maximum resident set size (KB) = 270236 + 0: The total amount of wall time = 652.164862 + 0: The maximum resident set size (KB) = 257292 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4559,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 219.800929 - 0: The maximum resident set size (KB) = 447292 + 0: The total amount of wall time = 217.888451 + 0: The maximum resident set size (KB) = 447280 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4588,14 +4588,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 202.602986 - 0: The maximum resident set size (KB) = 445152 + 0: The total amount of wall time = 202.906398 + 0: The maximum resident set size (KB) = 444644 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4617,14 +4617,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 308.572500 - 0: The maximum resident set size (KB) = 329212 + 0: The total amount of wall time = 292.247301 + 0: The maximum resident set size (KB) = 331936 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4633,42 +4633,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 257.638214 - 0: The maximum resident set size (KB) = 476620 + 0: The total amount of wall time = 256.738000 + 0: The maximum resident set size (KB) = 475776 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 63.701900 - 0: The maximum resident set size (KB) = 254256 + 0: The total amount of wall time = 64.777361 + 0: The maximum resident set size (KB) = 254488 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 762.107652 - 0: The maximum resident set size (KB) = 475396 + 0: The total amount of wall time = 762.000154 + 0: The maximum resident set size (KB) = 485028 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 645.154311 - 0: The maximum resident set size (KB) = 526904 + 0: The total amount of wall time = 641.920782 + 0: The maximum resident set size (KB) = 522976 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.425661 - 0: The maximum resident set size (KB) = 901384 + 0: The total amount of wall time = 369.095251 + 0: The maximum resident set size (KB) = 903572 Test 141 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,131 +4709,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.147673 - 0: The maximum resident set size (KB) = 887976 + 0: The total amount of wall time = 368.034004 + 0: The maximum resident set size (KB) = 890720 Test 142 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1194.208715 - 0: The maximum resident set size (KB) = 800688 + 0: The total amount of wall time = 1184.014446 + 0: The maximum resident set size (KB) = 800888 Test 143 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.196824 - 0: The maximum resident set size (KB) = 731436 + 0: The total amount of wall time = 167.533335 + 0: The maximum resident set size (KB) = 731416 Test 144 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.094899 - 0: The maximum resident set size (KB) = 707312 + 0: The total amount of wall time = 99.733547 + 0: The maximum resident set size (KB) = 718816 Test 145 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.654394 + 0: The total amount of wall time = 158.497734 0: The maximum resident set size (KB) = 610944 Test 146 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.724474 - 0: The maximum resident set size (KB) = 614856 + 0: The total amount of wall time = 157.611235 + 0: The maximum resident set size (KB) = 613280 Test 147 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.342797 - 0: The maximum resident set size (KB) = 611084 + 0: The total amount of wall time = 160.274671 + 0: The maximum resident set size (KB) = 610892 Test 148 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.468017 - 0: The maximum resident set size (KB) = 719836 + 0: The total amount of wall time = 163.306669 + 0: The maximum resident set size (KB) = 731412 Test 149 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.447102 - 0: The maximum resident set size (KB) = 731372 + 0: The total amount of wall time = 163.118471 + 0: The maximum resident set size (KB) = 731440 Test 150 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.459709 - 0: The maximum resident set size (KB) = 613516 + 0: The total amount of wall time = 158.280120 + 0: The maximum resident set size (KB) = 613536 Test 151 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4842,14 +4842,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 407.518739 - 0: The maximum resident set size (KB) = 512240 + 0: The total amount of wall time = 389.219288 + 0: The maximum resident set size (KB) = 514608 Test 152 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4858,77 +4858,77 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.944176 - 0: The maximum resident set size (KB) = 495248 + 0: The total amount of wall time = 389.383046 + 0: The maximum resident set size (KB) = 495340 Test 153 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.358136 - 0: The maximum resident set size (KB) = 731256 + 0: The total amount of wall time = 164.924332 + 0: The maximum resident set size (KB) = 731416 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 267.923154 - 0: The maximum resident set size (KB) = 1962512 + 0: The total amount of wall time = 270.633345 + 0: The maximum resident set size (KB) = 1962828 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.954724 - 0: The maximum resident set size (KB) = 1962424 + 0: The total amount of wall time = 277.764452 + 0: The maximum resident set size (KB) = 1965432 Test 156 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_debug_cfsr_intel Checking test 157 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 370.411317 - 0: The maximum resident set size (KB) = 714756 + 0: The total amount of wall time = 369.658908 + 0: The maximum resident set size (KB) = 703196 Test 157 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.896700 - 0: The maximum resident set size (KB) = 731412 + 0: The total amount of wall time = 162.470389 + 0: The maximum resident set size (KB) = 731316 Test 158 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4937,14 +4937,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.272456 - 0: The maximum resident set size (KB) = 118336 + 0: The total amount of wall time = 7.985352 + 0: The maximum resident set size (KB) = 118156 Test 159 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4953,14 +4953,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 14.834725 - 0: The maximum resident set size (KB) = 116180 + 0: The total amount of wall time = 13.303542 + 0: The maximum resident set size (KB) = 116112 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5045,14 +5045,14 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 221.824445 - 0: The maximum resident set size (KB) = 1454708 + 0: The total amount of wall time = 218.516350 + 0: The maximum resident set size (KB) = 1454840 Test 161 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5095,14 +5095,14 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 95.604895 - 0: The maximum resident set size (KB) = 1437456 + 0: The total amount of wall time = 94.610595 + 0: The maximum resident set size (KB) = 1437540 Test 162 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5146,14 +5146,14 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.817262 - 0: The maximum resident set size (KB) = 461040 + 0: The total amount of wall time = 90.661511 + 0: The maximum resident set size (KB) = 461124 Test 163 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5197,14 +5197,14 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 241.887684 - 0: The maximum resident set size (KB) = 1481212 + 0: The total amount of wall time = 245.991822 + 0: The maximum resident set size (KB) = 1481004 Test 164 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5248,14 +5248,14 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.968496 - 0: The maximum resident set size (KB) = 1523712 + 0: The total amount of wall time = 290.586715 + 0: The maximum resident set size (KB) = 1523532 Test 165 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5299,14 +5299,14 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.531442 - 0: The maximum resident set size (KB) = 1532256 + 0: The total amount of wall time = 296.525950 + 0: The maximum resident set size (KB) = 1532224 Test 166 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5322,14 +5322,14 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 657.021459 - 0: The maximum resident set size (KB) = 5048576 + 0: The total amount of wall time = 636.801364 + 0: The maximum resident set size (KB) = 5073608 Test 167 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18926/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_atmaq_faster_intel Checking test 168 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5345,12 +5345,12 @@ Checking test 168 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 629.684732 - 0: The maximum resident set size (KB) = 5045912 + 0: The total amount of wall time = 640.380538 + 0: The maximum resident set size (KB) = 5046744 Test 168 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed 13 Sep 2023 01:34:02 AM EDT -Elapsed time: 05h:35m:43s. Have a nice day! +Sat 16 Sep 2023 02:44:59 AM EDT +Elapsed time: 06h:40m:02s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 434239badb..9163ea66ea 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Wed Sep 13 13:41:32 UTC 2023 +Sun Sep 17 20:23:54 UTC 2023 Start Regression test -Testing UFSWM Hash: cd0aed4ebf3a7a8299f1f9e40c9bed3f6280aff8 +Testing UFSWM Hash: 564ce02c11af427e182ad1176cf7f4c0f5347f47 Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 538 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaero_intel elapsed time 541 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 557 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 166 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 594 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 259 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 552 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 558 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 587 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 516 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 586 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 196 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 644 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 528 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 163 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 598 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 261 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 189 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 575 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 199 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 604 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 643 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 226 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 650 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 135 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 240 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 968 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 679 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 223 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 617 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 116 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 834 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 89 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 655 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 128 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 972 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 248 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 618 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 233 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 893 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 91 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.503790 - 0: The maximum resident set size (KB) = 3147392 + 0: The total amount of wall time = 313.800004 + 0: The maximum resident set size (KB) = 3093444 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 219.466247 - 0: The maximum resident set size (KB) = 1680336 + 0: The total amount of wall time = 216.507829 + 0: The maximum resident set size (KB) = 1703052 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.043938 - 0: The maximum resident set size (KB) = 3179184 + 0: The total amount of wall time = 344.421805 + 0: The maximum resident set size (KB) = 3182104 Test 003 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.651121 - 0: The maximum resident set size (KB) = 3241052 + 0: The total amount of wall time = 199.846693 + 0: The maximum resident set size (KB) = 3187368 Test 004 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.804517 - 0: The maximum resident set size (KB) = 3146672 + 0: The total amount of wall time = 338.877893 + 0: The maximum resident set size (KB) = 3194672 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.477613 - 0: The maximum resident set size (KB) = 3030772 + 0: The total amount of wall time = 199.953256 + 0: The maximum resident set size (KB) = 3074444 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.728764 - 0: The maximum resident set size (KB) = 3536264 + 0: The total amount of wall time = 321.015884 + 0: The maximum resident set size (KB) = 3540120 Test 007 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.506581 - 0: The maximum resident set size (KB) = 3170196 + 0: The total amount of wall time = 338.213921 + 0: The maximum resident set size (KB) = 3179480 Test 008 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 284.378636 - 0: The maximum resident set size (KB) = 3032208 + 0: The total amount of wall time = 279.246098 + 0: The maximum resident set size (KB) = 3039228 Test 009 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.632653 - 0: The maximum resident set size (KB) = 3194032 + 0: The total amount of wall time = 341.306582 + 0: The maximum resident set size (KB) = 3180932 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 575.139960 - 0: The maximum resident set size (KB) = 3408408 + 0: The total amount of wall time = 572.901966 + 0: The maximum resident set size (KB) = 3357824 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 354.001183 - 0: The maximum resident set size (KB) = 3607748 + 0: The total amount of wall time = 358.870450 + 0: The maximum resident set size (KB) = 3610656 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 621.446617 - 0: The maximum resident set size (KB) = 4101364 + 0: The total amount of wall time = 627.063121 + 0: The maximum resident set size (KB) = 4111184 Test 013 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.341199 - 0: The maximum resident set size (KB) = 4348256 + 0: The total amount of wall time = 453.494650 + 0: The maximum resident set size (KB) = 4352372 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.331793 - 0: The maximum resident set size (KB) = 1725668 + 0: The total amount of wall time = 261.751022 + 0: The maximum resident set size (KB) = 1708828 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.677153 - 0: The maximum resident set size (KB) = 1779384 + 0: The total amount of wall time = 258.272781 + 0: The maximum resident set size (KB) = 1764712 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 511.852461 - 0: The maximum resident set size (KB) = 3230208 + 0: The total amount of wall time = 516.116831 + 0: The maximum resident set size (KB) = 3238340 Test 017 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.710597 - 0: The maximum resident set size (KB) = 1756956 + 0: The total amount of wall time = 349.560885 + 0: The maximum resident set size (KB) = 1761188 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.930315 - 0: The maximum resident set size (KB) = 1772648 + 0: The total amount of wall time = 259.645465 + 0: The maximum resident set size (KB) = 1766244 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 578.357073 - 0: The maximum resident set size (KB) = 2823676 + 0: The total amount of wall time = 589.439716 + 0: The maximum resident set size (KB) = 2824872 Test 020 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.794341 - 0: The maximum resident set size (KB) = 3181272 + 0: The total amount of wall time = 316.777369 + 0: The maximum resident set size (KB) = 3181860 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1195.432146 - 0: The maximum resident set size (KB) = 1749676 + 0: The total amount of wall time = 1199.347993 + 0: The maximum resident set size (KB) = 1714212 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 566.988641 - 0: The maximum resident set size (KB) = 1136608 + 0: The total amount of wall time = 562.276924 + 0: The maximum resident set size (KB) = 1151460 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1090.487752 - 0: The maximum resident set size (KB) = 1672516 + 0: The total amount of wall time = 1090.093243 + 0: The maximum resident set size (KB) = 1648044 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1386.556097 - 0: The maximum resident set size (KB) = 1711644 + 0: The total amount of wall time = 1395.115329 + 0: The maximum resident set size (KB) = 1705452 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.492760 - 0: The maximum resident set size (KB) = 693868 + 0: The total amount of wall time = 187.553516 + 0: The maximum resident set size (KB) = 693528 Test 026 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,36 +1719,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.616452 - 0: The maximum resident set size (KB) = 639644 + 0: The total amount of wall time = 131.516973 + 0: The maximum resident set size (KB) = 640112 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.168427 - 0: The maximum resident set size (KB) = 646944 + 0: The total amount of wall time = 136.650201 + 0: The maximum resident set size (KB) = 642012 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.885866 - 0: The maximum resident set size (KB) = 645536 + 0: The total amount of wall time = 133.655589 + 0: The maximum resident set size (KB) = 642404 Test 029 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.605030 - 0: The maximum resident set size (KB) = 642528 + 0: The total amount of wall time = 135.906488 + 0: The maximum resident set size (KB) = 644360 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 371.781087 -0: The maximum resident set size (KB) = 843872 +0: The total amount of wall time = 370.205356 +0: The maximum resident set size (KB) = 835220 Test 031 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.213160 - 0: The maximum resident set size (KB) = 781436 + 0: The total amount of wall time = 525.703341 + 0: The maximum resident set size (KB) = 786084 Test 032 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.025334 - 0: The maximum resident set size (KB) = 1388240 + 0: The total amount of wall time = 523.310307 + 0: The maximum resident set size (KB) = 1385548 Test 033 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 455.198589 - 0: The maximum resident set size (KB) = 1502016 + 0: The total amount of wall time = 452.373320 + 0: The maximum resident set size (KB) = 1488908 Test 034 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.515042 - 0: The maximum resident set size (KB) = 646832 + 0: The total amount of wall time = 87.650417 + 0: The maximum resident set size (KB) = 642088 Test 035 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.119764 - 0: The maximum resident set size (KB) = 553604 + 0: The total amount of wall time = 47.862954 + 0: The maximum resident set size (KB) = 555968 Test 036 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.185874 - 0: The maximum resident set size (KB) = 642048 + 0: The total amount of wall time = 82.466172 + 0: The maximum resident set size (KB) = 639468 Test 037 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.950012 - 0: The maximum resident set size (KB) = 640696 + 0: The total amount of wall time = 138.313734 + 0: The maximum resident set size (KB) = 639744 Test 038 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.767474 - 0: The maximum resident set size (KB) = 645100 + 0: The total amount of wall time = 137.675277 + 0: The maximum resident set size (KB) = 641288 Test 039 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.928188 - 0: The maximum resident set size (KB) = 1597892 + 0: The total amount of wall time = 171.938225 + 0: The maximum resident set size (KB) = 1595436 Test 040 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.983687 - 0: The maximum resident set size (KB) = 931664 + 0: The total amount of wall time = 91.892205 + 0: The maximum resident set size (KB) = 889188 Test 041 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.703162 - 0: The maximum resident set size (KB) = 1605616 + 0: The total amount of wall time = 172.758401 + 0: The maximum resident set size (KB) = 1600572 Test 042 control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.933165 - 0: The maximum resident set size (KB) = 878040 + 0: The total amount of wall time = 91.450778 + 0: The maximum resident set size (KB) = 875616 Test 043 control_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 177.993553 - 0: The maximum resident set size (KB) = 1580144 + 0: The total amount of wall time = 180.243447 + 0: The maximum resident set size (KB) = 1549924 Test 044 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 156.452563 - 0: The maximum resident set size (KB) = 1704732 + 0: The total amount of wall time = 159.353200 + 0: The maximum resident set size (KB) = 1702864 Test 045 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.354542 - 0: The maximum resident set size (KB) = 1590856 + 0: The total amount of wall time = 314.818400 + 0: The maximum resident set size (KB) = 1583436 Test 046 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.154188 - 0: The maximum resident set size (KB) = 1666240 + 0: The total amount of wall time = 226.819039 + 0: The maximum resident set size (KB) = 1665716 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.582299 - 0: The maximum resident set size (KB) = 1592552 + 0: The total amount of wall time = 171.403304 + 0: The maximum resident set size (KB) = 1602052 Test 048 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.057591 - 0: The maximum resident set size (KB) = 1624816 + 0: The total amount of wall time = 192.500520 + 0: The maximum resident set size (KB) = 1616392 Test 049 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.569464 - 0: The maximum resident set size (KB) = 1098944 + 0: The total amount of wall time = 291.830371 + 0: The maximum resident set size (KB) = 1092332 Test 050 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.246598 - 0: The maximum resident set size (KB) = 1088508 + 0: The total amount of wall time = 149.229278 + 0: The maximum resident set size (KB) = 1083820 Test 051 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.755206 - 0: The maximum resident set size (KB) = 1102100 + 0: The total amount of wall time = 292.540318 + 0: The maximum resident set size (KB) = 1093856 Test 052 regional_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.505615 - 0: The maximum resident set size (KB) = 1089472 + 0: The total amount of wall time = 150.690241 + 0: The maximum resident set size (KB) = 1083300 Test 053 regional_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.592723 - 0: The maximum resident set size (KB) = 1089120 + 0: The total amount of wall time = 306.714716 + 0: The maximum resident set size (KB) = 1090432 Test 054 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 176.238185 - 0: The maximum resident set size (KB) = 1078468 + 0: The total amount of wall time = 187.393459 + 0: The maximum resident set size (KB) = 1034092 Test 055 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 289.669195 - 0: The maximum resident set size (KB) = 1361620 + 0: The total amount of wall time = 288.626394 + 0: The maximum resident set size (KB) = 1366904 Test 056 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.291649 - 0: The maximum resident set size (KB) = 1087056 + 0: The total amount of wall time = 290.483665 + 0: The maximum resident set size (KB) = 1065744 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.441961 - 0: The maximum resident set size (KB) = 1096956 + 0: The total amount of wall time = 293.689253 + 0: The maximum resident set size (KB) = 1096116 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.818996 - 0: The maximum resident set size (KB) = 924892 + 0: The total amount of wall time = 371.751514 + 0: The maximum resident set size (KB) = 917800 Test 059 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 446.617518 - 0: The maximum resident set size (KB) = 1243324 + 0: The total amount of wall time = 446.663202 + 0: The maximum resident set size (KB) = 1239700 Test 060 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 228.447108 - 0: The maximum resident set size (KB) = 1205844 + 0: The total amount of wall time = 230.778018 + 0: The maximum resident set size (KB) = 1203416 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 464.578099 - 0: The maximum resident set size (KB) = 1170804 + 0: The total amount of wall time = 463.727445 + 0: The maximum resident set size (KB) = 1167360 Test 062 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 415.956912 - 0: The maximum resident set size (KB) = 1314112 + 0: The total amount of wall time = 414.812066 + 0: The maximum resident set size (KB) = 1323984 Test 063 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.079047 - 0: The maximum resident set size (KB) = 1142280 + 0: The total amount of wall time = 225.783695 + 0: The maximum resident set size (KB) = 1137216 Test 064 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 447.362147 - 0: The maximum resident set size (KB) = 1248440 + 0: The total amount of wall time = 446.608478 + 0: The maximum resident set size (KB) = 1240384 Test 065 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 467.087830 - 0: The maximum resident set size (KB) = 1166616 + 0: The total amount of wall time = 469.441174 + 0: The maximum resident set size (KB) = 1169096 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 333.189105 - 0: The maximum resident set size (KB) = 1167944 + 0: The total amount of wall time = 330.203736 + 0: The maximum resident set size (KB) = 1164492 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.319712 - 0: The maximum resident set size (KB) = 1184032 + 0: The total amount of wall time = 429.652938 + 0: The maximum resident set size (KB) = 1186704 Test 068 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 427.664838 - 0: The maximum resident set size (KB) = 1078388 + 0: The total amount of wall time = 427.993043 + 0: The maximum resident set size (KB) = 1076756 Test 069 hrrr_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 448.368093 - 0: The maximum resident set size (KB) = 1109740 + 0: The total amount of wall time = 445.706639 + 0: The maximum resident set size (KB) = 1113944 Test 070 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 394.326635 - 0: The maximum resident set size (KB) = 1127752 + 0: The total amount of wall time = 394.584160 + 0: The maximum resident set size (KB) = 1130004 Test 071 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.471223 - 0: The maximum resident set size (KB) = 1114420 + 0: The total amount of wall time = 319.356971 + 0: The maximum resident set size (KB) = 1121576 Test 072 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.971213 - 0: The maximum resident set size (KB) = 1020464 + 0: The total amount of wall time = 320.558469 + 0: The maximum resident set size (KB) = 1028304 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 439.979470 - 0: The maximum resident set size (KB) = 1204244 + 0: The total amount of wall time = 441.087176 + 0: The maximum resident set size (KB) = 1194136 Test 074 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.298646 - 0: The maximum resident set size (KB) = 798544 + 0: The total amount of wall time = 521.004863 + 0: The maximum resident set size (KB) = 800840 Test 075 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 506.831453 - 0: The maximum resident set size (KB) = 912884 + 0: The total amount of wall time = 508.179047 + 0: The maximum resident set size (KB) = 916008 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.103161 - 0: The maximum resident set size (KB) = 1231352 + 0: The total amount of wall time = 448.868023 + 0: The maximum resident set size (KB) = 1229832 Test 077 hrrr_gf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3486,14 +3486,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.585468 - 0: The maximum resident set size (KB) = 1229844 + 0: The total amount of wall time = 450.515566 + 0: The maximum resident set size (KB) = 1197040 Test 078 hrrr_c3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.337797 - 0: The maximum resident set size (KB) = 819620 + 0: The total amount of wall time = 341.606114 + 0: The maximum resident set size (KB) = 822308 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3522,14 +3522,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.728217 - 0: The maximum resident set size (KB) = 815116 + 0: The total amount of wall time = 334.145499 + 0: The maximum resident set size (KB) = 814240 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3540,26 +3540,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.364405 - 0: The maximum resident set size (KB) = 810332 + 0: The total amount of wall time = 188.009561 + 0: The maximum resident set size (KB) = 812876 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.649699 - 0: The maximum resident set size (KB) = 703392 + 0: The total amount of wall time = 113.920599 + 0: The maximum resident set size (KB) = 706080 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.837500 - 0: The maximum resident set size (KB) = 1597864 + 0: The total amount of wall time = 154.622294 + 0: The maximum resident set size (KB) = 1599168 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.139861 - 0: The maximum resident set size (KB) = 1091032 + 0: The total amount of wall time = 265.264115 + 0: The maximum resident set size (KB) = 1091816 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3658,348 +3658,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.735494 - 0: The maximum resident set size (KB) = 802272 + 0: The total amount of wall time = 145.506127 + 0: The maximum resident set size (KB) = 800812 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.613225 - 0: The maximum resident set size (KB) = 803740 + 0: The total amount of wall time = 146.312790 + 0: The maximum resident set size (KB) = 799100 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.915575 - 0: The maximum resident set size (KB) = 808072 + 0: The total amount of wall time = 169.764213 + 0: The maximum resident set size (KB) = 806468 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.541949 - 0: The maximum resident set size (KB) = 801932 + 0: The total amount of wall time = 147.539389 + 0: The maximum resident set size (KB) = 804408 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.881516 - 0: The maximum resident set size (KB) = 852484 + 0: The total amount of wall time = 226.455363 + 0: The maximum resident set size (KB) = 846924 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.468784 - 0: The maximum resident set size (KB) = 847076 + 0: The total amount of wall time = 227.960114 + 0: The maximum resident set size (KB) = 851736 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.157019 - 0: The maximum resident set size (KB) = 811812 + 0: The total amount of wall time = 147.916703 + 0: The maximum resident set size (KB) = 814720 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.602548 - 0: The maximum resident set size (KB) = 857780 + 0: The total amount of wall time = 154.850589 + 0: The maximum resident set size (KB) = 860040 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.959417 - 0: The maximum resident set size (KB) = 1621548 + 0: The total amount of wall time = 166.708647 + 0: The maximum resident set size (KB) = 1630500 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 995.533803 - 0: The maximum resident set size (KB) = 1109892 + 0: The total amount of wall time = 957.115476 + 0: The maximum resident set size (KB) = 1108940 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.133438 - 0: The maximum resident set size (KB) = 1184552 + 0: The total amount of wall time = 275.184721 + 0: The maximum resident set size (KB) = 1183260 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.356396 - 0: The maximum resident set size (KB) = 1194452 + 0: The total amount of wall time = 262.978652 + 0: The maximum resident set size (KB) = 1178304 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.641964 - 0: The maximum resident set size (KB) = 1181828 + 0: The total amount of wall time = 273.435111 + 0: The maximum resident set size (KB) = 1180708 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.946924 - 0: The maximum resident set size (KB) = 1260360 + 0: The total amount of wall time = 286.528153 + 0: The maximum resident set size (KB) = 1264312 Test 098 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.673397 - 0: The maximum resident set size (KB) = 1179160 + 0: The total amount of wall time = 275.366375 + 0: The maximum resident set size (KB) = 1181712 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.689874 - 0: The maximum resident set size (KB) = 1186044 + 0: The total amount of wall time = 284.516241 + 0: The maximum resident set size (KB) = 1183720 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.981668 - 0: The maximum resident set size (KB) = 1189440 + 0: The total amount of wall time = 276.714467 + 0: The maximum resident set size (KB) = 1192764 Test 101 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.904519 - 0: The maximum resident set size (KB) = 1182476 + 0: The total amount of wall time = 273.912010 + 0: The maximum resident set size (KB) = 1187372 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.918933 - 0: The maximum resident set size (KB) = 1189936 + 0: The total amount of wall time = 265.896724 + 0: The maximum resident set size (KB) = 1193588 Test 103 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.825485 - 0: The maximum resident set size (KB) = 1180872 + 0: The total amount of wall time = 274.024532 + 0: The maximum resident set size (KB) = 1188532 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.712543 - 0: The maximum resident set size (KB) = 1189432 + 0: The total amount of wall time = 442.554327 + 0: The maximum resident set size (KB) = 1180452 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.439661 - 0: The maximum resident set size (KB) = 1181072 + 0: The total amount of wall time = 270.463482 + 0: The maximum resident set size (KB) = 1180308 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 333.100848 - 0: The maximum resident set size (KB) = 1190624 + 0: The total amount of wall time = 326.977206 + 0: The maximum resident set size (KB) = 1187680 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.546944 - 0: The maximum resident set size (KB) = 1191432 + 0: The total amount of wall time = 271.653079 + 0: The maximum resident set size (KB) = 1185336 Test 108 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.785888 - 0: The maximum resident set size (KB) = 583232 + 0: The total amount of wall time = 277.469248 + 0: The maximum resident set size (KB) = 592436 Test 109 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +4010,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 214.724149 - 0: The maximum resident set size (KB) = 1074140 + 0: The total amount of wall time = 211.890142 + 0: The maximum resident set size (KB) = 1101964 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 370.133416 - 0: The maximum resident set size (KB) = 1105920 + 0: The total amount of wall time = 368.391742 + 0: The maximum resident set size (KB) = 1107784 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.392491 - 0: The maximum resident set size (KB) = 1039560 + 0: The total amount of wall time = 189.631268 + 0: The maximum resident set size (KB) = 1025556 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.168137 - 0: The maximum resident set size (KB) = 983132 + 0: The total amount of wall time = 189.990748 + 0: The maximum resident set size (KB) = 982064 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.679945 - 0: The maximum resident set size (KB) = 1127820 + 0: The total amount of wall time = 345.619582 + 0: The maximum resident set size (KB) = 1126756 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.049749 - 0: The maximum resident set size (KB) = 968944 + 0: The total amount of wall time = 174.861892 + 0: The maximum resident set size (KB) = 967460 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 201.085220 - 0: The maximum resident set size (KB) = 973644 + 0: The total amount of wall time = 199.607888 + 0: The maximum resident set size (KB) = 969440 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,42 +4380,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.529326 - 0: The maximum resident set size (KB) = 1054300 + 0: The total amount of wall time = 274.222593 + 0: The maximum resident set size (KB) = 1050152 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.059737 - 0: The maximum resident set size (KB) = 930816 + 0: The total amount of wall time = 100.660195 + 0: The maximum resident set size (KB) = 923812 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.202550 - 0: The maximum resident set size (KB) = 884520 + 0: The total amount of wall time = 100.444274 + 0: The maximum resident set size (KB) = 891976 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4431,40 +4431,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 112.267435 + 0: The total amount of wall time = 110.746128 0: The maximum resident set size (KB) = 1252752 Test 120 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.284670 - 0: The maximum resident set size (KB) = 1169140 + 0: The total amount of wall time = 44.933699 + 0: The maximum resident set size (KB) = 1169168 Test 121 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 63.428002 - 0: The maximum resident set size (KB) = 1184436 + 0: The total amount of wall time = 62.569315 + 0: The maximum resident set size (KB) = 1188692 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4511,123 +4511,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 241.201340 - 0: The maximum resident set size (KB) = 1105760 + 0: The total amount of wall time = 242.548601 + 0: The maximum resident set size (KB) = 1099660 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.881226 - 0: The maximum resident set size (KB) = 1067188 + 0: The total amount of wall time = 268.259133 + 0: The maximum resident set size (KB) = 1067584 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.304107 - 0: The maximum resident set size (KB) = 1065088 + 0: The total amount of wall time = 263.734873 + 0: The maximum resident set size (KB) = 1062360 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 834.024429 - 0: The maximum resident set size (KB) = 1267720 + 0: The total amount of wall time = 813.398643 + 0: The maximum resident set size (KB) = 1264360 Test 126 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.787658 - 0: The maximum resident set size (KB) = 1197936 + 0: The total amount of wall time = 462.129696 + 0: The maximum resident set size (KB) = 1189668 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 838.151172 - 0: The maximum resident set size (KB) = 1332792 + 0: The total amount of wall time = 821.713089 + 0: The maximum resident set size (KB) = 1332856 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.017772 - 0: The maximum resident set size (KB) = 1105296 + 0: The total amount of wall time = 272.161526 + 0: The maximum resident set size (KB) = 1101064 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 217.067595 - 0: The maximum resident set size (KB) = 1241820 + 0: The total amount of wall time = 214.123877 + 0: The maximum resident set size (KB) = 1240156 Test 130 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.262666 - 0: The maximum resident set size (KB) = 1582984 + 0: The total amount of wall time = 312.065629 + 0: The maximum resident set size (KB) = 1582916 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 368.513770 - 0: The maximum resident set size (KB) = 1419404 + 0: The total amount of wall time = 374.087384 + 0: The maximum resident set size (KB) = 1416292 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4652,14 +4652,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 741.242747 - 0: The maximum resident set size (KB) = 1431656 + 0: The total amount of wall time = 745.396229 + 0: The maximum resident set size (KB) = 1433880 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4670,14 +4670,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 840.706616 - 0: The maximum resident set size (KB) = 1466736 + 0: The total amount of wall time = 838.425186 + 0: The maximum resident set size (KB) = 1466816 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4699,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 298.149471 - 0: The maximum resident set size (KB) = 655448 + 0: The total amount of wall time = 292.870970 + 0: The maximum resident set size (KB) = 657144 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4728,14 +4728,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 304.038767 - 0: The maximum resident set size (KB) = 498296 + 0: The total amount of wall time = 303.417453 + 0: The maximum resident set size (KB) = 466964 Test 136 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4744,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 342.063082 - 0: The maximum resident set size (KB) = 663312 + 0: The total amount of wall time = 335.601685 + 0: The maximum resident set size (KB) = 659496 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4798,14 +4798,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 137.438154 - 0: The maximum resident set size (KB) = 398892 + 0: The total amount of wall time = 136.684006 + 0: The maximum resident set size (KB) = 399276 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_global_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4852,14 +4852,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 142.619693 - 0: The maximum resident set size (KB) = 376260 + 0: The total amount of wall time = 140.459715 + 0: The maximum resident set size (KB) = 375092 Test 139 hafs_global_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4941,14 +4941,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 382.812520 - 0: The maximum resident set size (KB) = 482028 + 0: The total amount of wall time = 381.654270 + 0: The maximum resident set size (KB) = 476548 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_global_multiple_4nests_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 407.730319 - 0: The maximum resident set size (KB) = 477768 + 0: The total amount of wall time = 405.204057 + 0: The maximum resident set size (KB) = 471792 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5046,14 +5046,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 190.276451 - 0: The maximum resident set size (KB) = 665652 + 0: The total amount of wall time = 188.653904 + 0: The maximum resident set size (KB) = 668928 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,14 +5075,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 178.986046 - 0: The maximum resident set size (KB) = 668428 + 0: The total amount of wall time = 176.272734 + 0: The maximum resident set size (KB) = 669168 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.581468 - 0: The maximum resident set size (KB) = 528612 + 0: The total amount of wall time = 192.697100 + 0: The maximum resident set size (KB) = 533900 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,42 +5120,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.108772 - 0: The maximum resident set size (KB) = 718328 + 0: The total amount of wall time = 221.224388 + 0: The maximum resident set size (KB) = 715292 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 54.907560 - 0: The maximum resident set size (KB) = 414496 + 0: The total amount of wall time = 57.215402 + 0: The maximum resident set size (KB) = 414388 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 699.196039 - 0: The maximum resident set size (KB) = 723736 + 0: The total amount of wall time = 706.279148 + 0: The maximum resident set size (KB) = 723308 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 476.038120 - 0: The maximum resident set size (KB) = 803288 + 0: The total amount of wall time = 479.691746 + 0: The maximum resident set size (KB) = 804716 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,14 +5181,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 331.762687 - 0: The maximum resident set size (KB) = 1413744 + 0: The total amount of wall time = 336.682469 + 0: The maximum resident set size (KB) = 1404700 Test 149 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,131 +5196,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.328779 - 0: The maximum resident set size (KB) = 1394908 + 0: The total amount of wall time = 341.692976 + 0: The maximum resident set size (KB) = 1380528 Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 963.366460 - 0: The maximum resident set size (KB) = 1150784 + 0: The total amount of wall time = 957.935866 + 0: The maximum resident set size (KB) = 1148944 Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.754855 - 0: The maximum resident set size (KB) = 1107736 + 0: The total amount of wall time = 156.918291 + 0: The maximum resident set size (KB) = 1112192 Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.077173 - 0: The maximum resident set size (KB) = 1072016 + 0: The total amount of wall time = 91.898822 + 0: The maximum resident set size (KB) = 1053980 Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.761831 - 0: The maximum resident set size (KB) = 992592 + 0: The total amount of wall time = 147.437104 + 0: The maximum resident set size (KB) = 1006840 Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.151317 - 0: The maximum resident set size (KB) = 987200 + 0: The total amount of wall time = 151.459986 + 0: The maximum resident set size (KB) = 999484 Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.210831 - 0: The maximum resident set size (KB) = 993104 + 0: The total amount of wall time = 149.827822 + 0: The maximum resident set size (KB) = 993816 Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.239190 - 0: The maximum resident set size (KB) = 1099888 + 0: The total amount of wall time = 153.537850 + 0: The maximum resident set size (KB) = 1100572 Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.258831 - 0: The maximum resident set size (KB) = 1113104 + 0: The total amount of wall time = 153.750754 + 0: The maximum resident set size (KB) = 1108200 Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.392024 - 0: The maximum resident set size (KB) = 988584 + 0: The total amount of wall time = 146.943528 + 0: The maximum resident set size (KB) = 996212 Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 426.507568 - 0: The maximum resident set size (KB) = 1031540 + 0: The total amount of wall time = 433.956702 + 0: The maximum resident set size (KB) = 1023144 Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5345,77 +5345,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 420.269973 - 0: The maximum resident set size (KB) = 1027532 + 0: The total amount of wall time = 422.012868 + 0: The maximum resident set size (KB) = 1024468 Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.461245 - 0: The maximum resident set size (KB) = 1107088 + 0: The total amount of wall time = 154.637587 + 0: The maximum resident set size (KB) = 1105560 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 223.126244 - 0: The maximum resident set size (KB) = 2464312 + 0: The total amount of wall time = 231.541464 + 0: The maximum resident set size (KB) = 2389956 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 227.747732 - 0: The maximum resident set size (KB) = 2463516 + 0: The total amount of wall time = 221.944741 + 0: The maximum resident set size (KB) = 2402496 Test 164 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.156745 - 0: The maximum resident set size (KB) = 1027020 + 0: The total amount of wall time = 363.648247 + 0: The maximum resident set size (KB) = 1041856 Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.734809 - 0: The maximum resident set size (KB) = 1111456 + 0: The total amount of wall time = 155.180632 + 0: The maximum resident set size (KB) = 1112244 Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5424,14 +5424,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.970487 - 0: The maximum resident set size (KB) = 251984 + 0: The total amount of wall time = 5.999369 + 0: The maximum resident set size (KB) = 252768 Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_lnd_gswp3_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5440,14 +5440,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.727019 - 0: The maximum resident set size (KB) = 251468 + 0: The total amount of wall time = 13.063236 + 0: The maximum resident set size (KB) = 254444 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5532,14 +5532,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 205.016435 - 0: The maximum resident set size (KB) = 1607760 + 0: The total amount of wall time = 203.755816 + 0: The maximum resident set size (KB) = 1608972 Test 169 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5582,14 +5582,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 97.784055 - 0: The maximum resident set size (KB) = 1629048 + 0: The total amount of wall time = 95.642574 + 0: The maximum resident set size (KB) = 1626632 Test 170 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5633,14 +5633,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.905211 - 0: The maximum resident set size (KB) = 658968 + 0: The total amount of wall time = 86.892080 + 0: The maximum resident set size (KB) = 664444 Test 171 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5684,14 +5684,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.022446 - 0: The maximum resident set size (KB) = 2991100 + 0: The total amount of wall time = 232.504323 + 0: The maximum resident set size (KB) = 3012184 Test 172 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5735,14 +5735,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.995780 - 0: The maximum resident set size (KB) = 3059980 + 0: The total amount of wall time = 284.604543 + 0: The maximum resident set size (KB) = 2995304 Test 173 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5786,14 +5786,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 289.145745 - 0: The maximum resident set size (KB) = 3061336 + 0: The total amount of wall time = 284.268610 + 0: The maximum resident set size (KB) = 3077560 Test 174 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5809,14 +5809,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 638.991628 - 0: The maximum resident set size (KB) = 5434308 + 0: The total amount of wall time = 638.633394 + 0: The maximum resident set size (KB) = 5403520 Test 175 regional_atmaq_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5830,14 +5830,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1190.531560 - 0: The maximum resident set size (KB) = 4865988 + 0: The total amount of wall time = 1185.879171 + 0: The maximum resident set size (KB) = 4879560 Test 176 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5853,14 +5853,14 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 553.095234 - 0: The maximum resident set size (KB) = 5339276 + 0: The total amount of wall time = 557.447807 + 0: The maximum resident set size (KB) = 5322252 Test 177 regional_atmaq_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c48_gnu Checking test 178 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5899,14 +5899,14 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 692.788268 -0: The maximum resident set size (KB) = 726944 +0: The total amount of wall time = 689.608816 +0: The maximum resident set size (KB) = 732656 Test 178 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_gnu Checking test 179 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5917,14 +5917,14 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 241.996401 - 0: The maximum resident set size (KB) = 540232 + 0: The total amount of wall time = 230.229815 + 0: The maximum resident set size (KB) = 534764 Test 179 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_gnu Checking test 180 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5935,14 +5935,14 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 279.578650 - 0: The maximum resident set size (KB) = 551248 + 0: The total amount of wall time = 282.915842 + 0: The maximum resident set size (KB) = 546136 Test 180 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_gnu Checking test 181 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5989,14 +5989,14 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 299.903212 - 0: The maximum resident set size (KB) = 1294832 + 0: The total amount of wall time = 299.147653 + 0: The maximum resident set size (KB) = 1296632 Test 181 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_flake_gnu Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.253137 - 0: The maximum resident set size (KB) = 587216 + 0: The total amount of wall time = 342.514950 + 0: The maximum resident set size (KB) = 583328 Test 182 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_gnu Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 678.569586 - 0: The maximum resident set size (KB) = 853116 + 0: The total amount of wall time = 681.561549 + 0: The maximum resident set size (KB) = 852536 Test 183 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_decomp_gnu Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6115,14 +6115,14 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 681.619691 - 0: The maximum resident set size (KB) = 853496 + 0: The total amount of wall time = 687.534932 + 0: The maximum resident set size (KB) = 853372 Test 184 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_gnu Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6169,14 +6169,14 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 608.890007 - 0: The maximum resident set size (KB) = 957952 + 0: The total amount of wall time = 614.885046 + 0: The maximum resident set size (KB) = 958808 Test 185 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_gnu Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6215,14 +6215,14 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.343913 - 0: The maximum resident set size (KB) = 759960 + 0: The total amount of wall time = 347.029478 + 0: The maximum resident set size (KB) = 756688 Test 186 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_gnu Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6269,14 +6269,14 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 681.117496 - 0: The maximum resident set size (KB) = 852648 + 0: The total amount of wall time = 679.587279 + 0: The maximum resident set size (KB) = 848900 Test 187 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_decomp_gnu Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6323,14 +6323,14 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 687.183841 - 0: The maximum resident set size (KB) = 852368 + 0: The total amount of wall time = 688.860610 + 0: The maximum resident set size (KB) = 853016 Test 188 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_restart_gnu Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6369,14 +6369,14 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 507.251732 - 0: The maximum resident set size (KB) = 762792 + 0: The total amount of wall time = 499.041958 + 0: The maximum resident set size (KB) = 765608 Test 189 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_gnu Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6423,14 +6423,14 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 648.765961 - 0: The maximum resident set size (KB) = 851632 + 0: The total amount of wall time = 654.247581 + 0: The maximum resident set size (KB) = 849592 Test 190 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_gnu Checking test 191 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6477,14 +6477,14 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 655.194010 - 0: The maximum resident set size (KB) = 860704 + 0: The total amount of wall time = 657.119655 + 0: The maximum resident set size (KB) = 896300 Test 191 hrrr_control_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_gnu Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6531,14 +6531,14 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 575.102198 - 0: The maximum resident set size (KB) = 956336 + 0: The total amount of wall time = 575.281334 + 0: The maximum resident set size (KB) = 952520 Test 192 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_gnu Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6585,42 +6585,42 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 657.740056 - 0: The maximum resident set size (KB) = 850860 + 0: The total amount of wall time = 658.733312 + 0: The maximum resident set size (KB) = 849812 Test 193 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_gnu Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.791314 - 0: The maximum resident set size (KB) = 712632 + 0: The total amount of wall time = 491.498745 + 0: The maximum resident set size (KB) = 712160 Test 194 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_gnu Checking test 195 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 501.170245 - 0: The maximum resident set size (KB) = 615140 + 0: The total amount of wall time = 491.342592 + 0: The maximum resident set size (KB) = 618872 Test 195 hrrr_control_restart_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_gnu Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6667,14 +6667,14 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 665.141781 - 0: The maximum resident set size (KB) = 849940 + 0: The total amount of wall time = 661.618751 + 0: The maximum resident set size (KB) = 845492 Test 196 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_gf_gnu Checking test 197 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6721,208 +6721,208 @@ Checking test 197 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 677.717696 - 0: The maximum resident set size (KB) = 854440 + 0: The total amount of wall time = 683.188839 + 0: The maximum resident set size (KB) = 851024 Test 197 hrrr_gf_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 85.784636 - 0: The maximum resident set size (KB) = 542876 + 0: The total amount of wall time = 85.623809 + 0: The maximum resident set size (KB) = 583812 Test 198 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 431.224003 - 0: The maximum resident set size (KB) = 816992 + 0: The total amount of wall time = 421.200820 + 0: The maximum resident set size (KB) = 819968 Test 199 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.430066 - 0: The maximum resident set size (KB) = 858212 + 0: The total amount of wall time = 137.913888 + 0: The maximum resident set size (KB) = 859676 Test 200 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.437090 - 0: The maximum resident set size (KB) = 892760 + 0: The total amount of wall time = 132.495865 + 0: The maximum resident set size (KB) = 858392 Test 201 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.679376 - 0: The maximum resident set size (KB) = 948412 + 0: The total amount of wall time = 148.916649 + 0: The maximum resident set size (KB) = 944436 Test 202 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.401087 - 0: The maximum resident set size (KB) = 862160 + 0: The total amount of wall time = 216.307296 + 0: The maximum resident set size (KB) = 893960 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.612696 - 0: The maximum resident set size (KB) = 893352 + 0: The total amount of wall time = 139.843941 + 0: The maximum resident set size (KB) = 862244 Test 204 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.357503 - 0: The maximum resident set size (KB) = 859832 + 0: The total amount of wall time = 136.530100 + 0: The maximum resident set size (KB) = 861708 Test 205 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 79.324777 - 0: The maximum resident set size (KB) = 500480 + 0: The total amount of wall time = 78.933751 + 0: The maximum resident set size (KB) = 536504 Test 206 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.302698 - 0: The maximum resident set size (KB) = 491964 + 0: The total amount of wall time = 120.743389 + 0: The maximum resident set size (KB) = 497076 Test 207 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 87.851230 - 0: The maximum resident set size (KB) = 1285356 + 0: The total amount of wall time = 89.113759 + 0: The maximum resident set size (KB) = 1283508 Test 208 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.721437 - 0: The maximum resident set size (KB) = 894816 + 0: The total amount of wall time = 135.968721 + 0: The maximum resident set size (KB) = 868096 Test 209 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.695774 - 0: The maximum resident set size (KB) = 865096 + 0: The total amount of wall time = 155.275233 + 0: The maximum resident set size (KB) = 867868 Test 210 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_debug_gnu Checking test 211 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 136.705765 - 0: The maximum resident set size (KB) = 285564 + 0: The total amount of wall time = 133.768620 + 0: The maximum resident set size (KB) = 286116 Test 211 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6969,14 +6969,14 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 696.706069 - 0: The maximum resident set size (KB) = 746880 + 0: The total amount of wall time = 697.116058 + 0: The maximum resident set size (KB) = 746076 Test 212 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7023,14 +7023,14 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 350.560638 - 0: The maximum resident set size (KB) = 739320 + 0: The total amount of wall time = 351.869937 + 0: The maximum resident set size (KB) = 742940 Test 213 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7077,14 +7077,14 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 354.304893 - 0: The maximum resident set size (KB) = 752832 + 0: The total amount of wall time = 355.998933 + 0: The maximum resident set size (KB) = 754520 Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7131,14 +7131,14 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 625.726797 - 0: The maximum resident set size (KB) = 793376 + 0: The total amount of wall time = 620.356971 + 0: The maximum resident set size (KB) = 788364 Test 215 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7185,14 +7185,14 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 304.347306 - 0: The maximum resident set size (KB) = 788044 + 0: The total amount of wall time = 304.474831 + 0: The maximum resident set size (KB) = 791868 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7239,14 +7239,14 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 352.052904 - 0: The maximum resident set size (KB) = 744092 + 0: The total amount of wall time = 349.312232 + 0: The maximum resident set size (KB) = 743128 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7285,42 +7285,42 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 529.604877 - 0: The maximum resident set size (KB) = 649932 + 0: The total amount of wall time = 524.764685 + 0: The maximum resident set size (KB) = 654196 Test 218 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.875927 - 0: The maximum resident set size (KB) = 616452 + 0: The total amount of wall time = 184.028062 + 0: The maximum resident set size (KB) = 618368 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_restart_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 185.497188 - 0: The maximum resident set size (KB) = 583452 + 0: The total amount of wall time = 184.503850 + 0: The maximum resident set size (KB) = 578656 Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_control_gnu Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7336,40 +7336,40 @@ Checking test 221 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 243.405319 - 0: The maximum resident set size (KB) = 952880 + 0: The total amount of wall time = 242.490384 + 0: The maximum resident set size (KB) = 952792 Test 221 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_2threads_gnu Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.006481 - 0: The maximum resident set size (KB) = 1000464 + 0: The total amount of wall time = 102.283372 + 0: The maximum resident set size (KB) = 998592 Test 222 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_restart_mismatch_gnu Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.713114 - 0: The maximum resident set size (KB) = 606836 + 0: The total amount of wall time = 127.803242 + 0: The maximum resident set size (KB) = 606908 Test 223 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7416,98 +7416,98 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 411.005547 - 0: The maximum resident set size (KB) = 773448 + 0: The total amount of wall time = 406.273038 + 0: The maximum resident set size (KB) = 771196 Test 224 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_dyn32_phy32_gnu Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.571354 - 0: The maximum resident set size (KB) = 759112 + 0: The total amount of wall time = 135.330630 + 0: The maximum resident set size (KB) = 758368 Test 225 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_dyn32_phy32_gnu Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 133.356364 - 0: The maximum resident set size (KB) = 756308 + 0: The total amount of wall time = 134.662625 + 0: The maximum resident set size (KB) = 756768 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_gnu Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.967577 - 0: The maximum resident set size (KB) = 966052 + 0: The total amount of wall time = 414.681352 + 0: The maximum resident set size (KB) = 969812 Test 227 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.372103 - 0: The maximum resident set size (KB) = 1006384 + 0: The total amount of wall time = 254.803294 + 0: The maximum resident set size (KB) = 1006260 Test 228 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.777460 - 0: The maximum resident set size (KB) = 1034672 + 0: The total amount of wall time = 423.762934 + 0: The maximum resident set size (KB) = 1034112 Test 229 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.245601 - 0: The maximum resident set size (KB) = 777072 + 0: The total amount of wall time = 140.867853 + 0: The maximum resident set size (KB) = 770372 Test 230 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7572,14 +7572,14 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 640.492796 - 0: The maximum resident set size (KB) = 1512016 + 0: The total amount of wall time = 629.605176 + 0: The maximum resident set size (KB) = 1511124 Test 231 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7641,14 +7641,14 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 406.233359 - 0: The maximum resident set size (KB) = 1409604 + 0: The total amount of wall time = 404.284428 + 0: The maximum resident set size (KB) = 1392788 Test 232 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7701,14 +7701,14 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.958186 - 0: The maximum resident set size (KB) = 1501504 + 0: The total amount of wall time = 372.310056 + 0: The maximum resident set size (KB) = 1479784 Test 233 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7772,14 +7772,14 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1420.738420 - 0: The maximum resident set size (KB) = 1385320 + 0: The total amount of wall time = 1411.058521 + 0: The maximum resident set size (KB) = 1377248 Test 234 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,25 +7831,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 721.731211 - 0: The maximum resident set size (KB) = 1392544 + 0: The total amount of wall time = 705.969270 + 0: The maximum resident set size (KB) = 1389432 Test 235 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_37925/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.408452 - 0: The maximum resident set size (KB) = 686880 + 0: The total amount of wall time = 166.374757 + 0: The maximum resident set size (KB) = 686060 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 13 16:00:23 UTC 2023 -Elapsed time: 02h:18m:51s. Have a nice day! +Sun Sep 17 22:39:37 UTC 2023 +Elapsed time: 02h:15m:43s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 7fa2b66937..2052dad320 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Fri Sep 8 02:47:25 UTC 2023 +Sun Sep 17 20:25:30 UTC 2023 Start Regression test -Testing UFSWM Hash: 2931b893c5c8b918c1ce9c31ffab55b7b633aa78 +Testing UFSWM Hash: 564ce02c11af427e182ad1176cf7f4c0f5347f47 Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - b4a691bb42f5e197ff36f97ae4a80590dd19213b ../FV3 (remotes/origin/feature/gf-spp) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 59c554a12df3a04e0402ce5f17bb32cbbac193b2 ../WW3 (6.07.1-341-g59c554a1) - c0de6f80be40b3ed05bc85265190377716ea45d2 ../stochastic_physics (remotes/origin/feature/gf-spp) -Compile atm_debug_dyn32_intel elapsed time 411 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1897 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1736 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1839 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1792 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1793 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 118 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1805 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1808 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2457 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1734 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1903 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1830 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 289 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1954 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2048 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 303 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5460 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2048 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atm_debug_dyn32_intel elapsed time 307 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1898 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1726 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1792 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1757 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1761 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 293 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1808 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1834 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1831 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1840 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2065 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 306 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5490 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2054 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.246180 - 0: The maximum resident set size (KB) = 1756164 + 0: The total amount of wall time = 416.505700 + 0: The maximum resident set size (KB) = 1747068 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.105947 - 0: The maximum resident set size (KB) = 1611604 + 0: The total amount of wall time = 285.698410 + 0: The maximum resident set size (KB) = 1609804 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.108512 - 0: The maximum resident set size (KB) = 1816540 + 0: The total amount of wall time = 464.446968 + 0: The maximum resident set size (KB) = 1797980 Test 003 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.441215 - 0: The maximum resident set size (KB) = 1699924 + 0: The total amount of wall time = 259.472004 + 0: The maximum resident set size (KB) = 1690020 Test 004 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.340984 - 0: The maximum resident set size (KB) = 1806280 + 0: The total amount of wall time = 469.543202 + 0: The maximum resident set size (KB) = 1800816 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.596054 - 0: The maximum resident set size (KB) = 1529560 + 0: The total amount of wall time = 271.189704 + 0: The maximum resident set size (KB) = 1526804 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.731996 - 0: The maximum resident set size (KB) = 2173232 + 0: The total amount of wall time = 443.697399 + 0: The maximum resident set size (KB) = 2165452 Test 007 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.114889 - 0: The maximum resident set size (KB) = 1795284 + 0: The total amount of wall time = 476.696306 + 0: The maximum resident set size (KB) = 1793524 Test 008 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_mpi_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 378.704679 - 0: The maximum resident set size (KB) = 1772852 + 0: The total amount of wall time = 440.226564 + 0: The maximum resident set size (KB) = 1759652 Test 009 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.367585 - 0: The maximum resident set size (KB) = 1819080 + 0: The total amount of wall time = 467.878337 + 0: The maximum resident set size (KB) = 1786704 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.448969 - 0: The maximum resident set size (KB) = 1658244 + 0: The total amount of wall time = 345.146849 + 0: The maximum resident set size (KB) = 1639000 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_nowave_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +839,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 342.803060 - 0: The maximum resident set size (KB) = 1702500 + 0: The total amount of wall time = 339.975941 + 0: The maximum resident set size (KB) = 1687772 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 667.694541 - 0: The maximum resident set size (KB) = 1823176 + 0: The total amount of wall time = 677.110791 + 0: The maximum resident set size (KB) = 1805504 Test 013 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.525706 - 0: The maximum resident set size (KB) = 1652652 + 0: The total amount of wall time = 462.652584 + 0: The maximum resident set size (KB) = 1647236 Test 014 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 344.206540 - 0: The maximum resident set size (KB) = 1701632 + 0: The total amount of wall time = 344.210723 + 0: The maximum resident set size (KB) = 1690992 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 805.974134 - 0: The maximum resident set size (KB) = 2782448 + 0: The total amount of wall time = 806.467519 + 0: The maximum resident set size (KB) = 2783016 Test 016 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.101856 - 0: The maximum resident set size (KB) = 1797032 + 0: The total amount of wall time = 432.579160 + 0: The maximum resident set size (KB) = 1815376 Test 017 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.981881 - 0: The maximum resident set size (KB) = 633892 + 0: The total amount of wall time = 253.092460 + 0: The maximum resident set size (KB) = 629532 Test 018 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 179.460650 - 0: The maximum resident set size (KB) = 580908 + 0: The total amount of wall time = 177.945102 + 0: The maximum resident set size (KB) = 579988 Test 019 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.594404 - 0: The maximum resident set size (KB) = 585456 + 0: The total amount of wall time = 191.919395 + 0: The maximum resident set size (KB) = 584496 Test 020 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.705981 - 0: The maximum resident set size (KB) = 579916 + 0: The total amount of wall time = 185.713019 + 0: The maximum resident set size (KB) = 579736 Test 021 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.745788 - 0: The maximum resident set size (KB) = 582136 + 0: The total amount of wall time = 185.513087 + 0: The maximum resident set size (KB) = 578160 Test 022 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 606.315989 -0: The maximum resident set size (KB) = 802888 +0: The total amount of wall time = 599.812452 +0: The maximum resident set size (KB) = 806900 Test 023 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 734.353774 - 0: The maximum resident set size (KB) = 704164 + 0: The total amount of wall time = 732.855566 + 0: The maximum resident set size (KB) = 694332 Test 024 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 932.909604 - 0: The maximum resident set size (KB) = 1178764 + 0: The total amount of wall time = 937.538273 + 0: The maximum resident set size (KB) = 1171772 Test 025 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 809.296607 - 0: The maximum resident set size (KB) = 1298332 + 0: The total amount of wall time = 837.894824 + 0: The maximum resident set size (KB) = 1305048 Test 026 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.871270 - 0: The maximum resident set size (KB) = 585964 + 0: The total amount of wall time = 127.878186 + 0: The maximum resident set size (KB) = 590240 Test 027 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_stochy_restart_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 65.394722 - 0: The maximum resident set size (KB) = 463776 + 0: The total amount of wall time = 67.563627 + 0: The maximum resident set size (KB) = 461664 Test 028 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.124925 - 0: The maximum resident set size (KB) = 591024 + 0: The total amount of wall time = 119.772953 + 0: The maximum resident set size (KB) = 585772 Test 029 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.153448 - 0: The maximum resident set size (KB) = 579364 + 0: The total amount of wall time = 201.309392 + 0: The maximum resident set size (KB) = 575260 Test 030 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.791817 - 0: The maximum resident set size (KB) = 582872 + 0: The total amount of wall time = 194.746536 + 0: The maximum resident set size (KB) = 579968 Test 031 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.800762 - 0: The maximum resident set size (KB) = 1547584 + 0: The total amount of wall time = 230.562514 + 0: The maximum resident set size (KB) = 1546460 Test 032 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.023205 - 0: The maximum resident set size (KB) = 837256 + 0: The total amount of wall time = 118.763474 + 0: The maximum resident set size (KB) = 836384 Test 033 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 226.926547 - 0: The maximum resident set size (KB) = 1553912 + 0: The total amount of wall time = 233.750615 + 0: The maximum resident set size (KB) = 1561588 Test 034 control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.405292 - 0: The maximum resident set size (KB) = 790168 + 0: The total amount of wall time = 122.365389 + 0: The maximum resident set size (KB) = 791412 Test 035 control_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 237.092421 - 0: The maximum resident set size (KB) = 1534928 + 0: The total amount of wall time = 239.130034 + 0: The maximum resident set size (KB) = 1536256 Test 036 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 216.644355 - 0: The maximum resident set size (KB) = 1633664 + 0: The total amount of wall time = 218.397480 + 0: The maximum resident set size (KB) = 1629712 Test 037 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 425.791553 - 0: The maximum resident set size (KB) = 1552028 + 0: The total amount of wall time = 429.831924 + 0: The maximum resident set size (KB) = 1545328 Test 038 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 305.721157 - 0: The maximum resident set size (KB) = 1623024 + 0: The total amount of wall time = 303.785156 + 0: The maximum resident set size (KB) = 1607092 Test 039 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 237.529300 - 0: The maximum resident set size (KB) = 1553400 + 0: The total amount of wall time = 236.233002 + 0: The maximum resident set size (KB) = 1553556 Test 040 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 257.426364 - 0: The maximum resident set size (KB) = 1553124 + 0: The total amount of wall time = 259.378957 + 0: The maximum resident set size (KB) = 1555668 Test 041 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 406.805109 - 0: The maximum resident set size (KB) = 997168 + 0: The total amount of wall time = 392.004612 + 0: The maximum resident set size (KB) = 995332 Test 042 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_restart_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 204.973658 - 0: The maximum resident set size (KB) = 983380 + 0: The total amount of wall time = 202.911476 + 0: The maximum resident set size (KB) = 991684 Test 043 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 399.570229 - 0: The maximum resident set size (KB) = 994728 + 0: The total amount of wall time = 401.074202 + 0: The maximum resident set size (KB) = 995916 Test 044 regional_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 203.527417 - 0: The maximum resident set size (KB) = 989212 + 0: The total amount of wall time = 204.791289 + 0: The maximum resident set size (KB) = 990168 Test 045 regional_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_decomp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.842174 - 0: The maximum resident set size (KB) = 985200 + 0: The total amount of wall time = 417.674715 + 0: The maximum resident set size (KB) = 984956 Test 046 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_2threads_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.364177 - 0: The maximum resident set size (KB) = 985540 + 0: The total amount of wall time = 240.641409 + 0: The maximum resident set size (KB) = 994392 Test 047 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 390.154837 - 0: The maximum resident set size (KB) = 988996 + 0: The total amount of wall time = 394.464230 + 0: The maximum resident set size (KB) = 1000416 Test 048 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_2dwrtdecomp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 394.143029 - 0: The maximum resident set size (KB) = 996860 + 0: The total amount of wall time = 391.119778 + 0: The maximum resident set size (KB) = 991424 Test 049 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 593.271225 - 0: The maximum resident set size (KB) = 1085948 + 0: The total amount of wall time = 586.759446 + 0: The maximum resident set size (KB) = 1076468 Test 050 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 329.831529 - 0: The maximum resident set size (KB) = 1108252 + 0: The total amount of wall time = 319.992574 + 0: The maximum resident set size (KB) = 1109660 Test 051 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_decomp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 625.015304 - 0: The maximum resident set size (KB) = 1027888 + 0: The total amount of wall time = 623.474074 + 0: The maximum resident set size (KB) = 1030112 Test 052 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_2threads_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 555.505290 - 0: The maximum resident set size (KB) = 1159936 + 0: The total amount of wall time = 551.900392 + 0: The maximum resident set size (KB) = 1160236 Test 053 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_restart_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 299.635723 - 0: The maximum resident set size (KB) = 1005756 + 0: The total amount of wall time = 296.870346 + 0: The maximum resident set size (KB) = 1002480 Test 054 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 590.002996 - 0: The maximum resident set size (KB) = 1074572 + 0: The total amount of wall time = 590.979756 + 0: The maximum resident set size (KB) = 1073480 Test 055 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_sfcdiff_decomp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 630.988388 - 0: The maximum resident set size (KB) = 1027880 + 0: The total amount of wall time = 626.028326 + 0: The maximum resident set size (KB) = 1028308 Test 056 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_sfcdiff_restart_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 438.561615 - 0: The maximum resident set size (KB) = 1022664 + 0: The total amount of wall time = 461.265336 + 0: The maximum resident set size (KB) = 1017484 Test 057 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 560.569104 - 0: The maximum resident set size (KB) = 1035404 + 0: The total amount of wall time = 568.927302 + 0: The maximum resident set size (KB) = 1027496 Test 058 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 562.558097 - 0: The maximum resident set size (KB) = 977548 + 0: The total amount of wall time = 561.299553 + 0: The maximum resident set size (KB) = 956852 Test 059 hrrr_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_decomp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 602.976054 - 0: The maximum resident set size (KB) = 986284 + 0: The total amount of wall time = 595.374769 + 0: The maximum resident set size (KB) = 983256 Test 060 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_2threads_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 537.874775 - 0: The maximum resident set size (KB) = 1030052 + 0: The total amount of wall time = 525.107961 + 0: The maximum resident set size (KB) = 1031236 Test 061 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_restart_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 424.560123 - 0: The maximum resident set size (KB) = 969788 + 0: The total amount of wall time = 446.039829 + 0: The maximum resident set size (KB) = 962908 Test 062 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 430.814777 - 0: The maximum resident set size (KB) = 886732 + 0: The total amount of wall time = 453.143912 + 0: The maximum resident set size (KB) = 892524 Test 063 hrrr_control_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 598.756564 - 0: The maximum resident set size (KB) = 1043808 + 0: The total amount of wall time = 586.139347 + 0: The maximum resident set size (KB) = 1045592 Test 064 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 715.340519 - 0: The maximum resident set size (KB) = 674620 + 0: The total amount of wall time = 727.252161 + 0: The maximum resident set size (KB) = 672668 Test 065 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 709.173734 - 0: The maximum resident set size (KB) = 745952 + 0: The total amount of wall time = 727.012286 + 0: The maximum resident set size (KB) = 738724 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 614.015163 - 0: The maximum resident set size (KB) = 1068964 + 0: The total amount of wall time = 591.567309 + 0: The maximum resident set size (KB) = 1069408 Test 067 hrrr_gf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 595.626811 - 0: The maximum resident set size (KB) = 1065056 + 0: The total amount of wall time = 593.628114 + 0: The maximum resident set size (KB) = 1067984 Test 068 hrrr_c3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2960,14 +2960,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.397368 - 0: The maximum resident set size (KB) = 695456 + 0: The total amount of wall time = 453.660400 + 0: The maximum resident set size (KB) = 692056 Test 069 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.876016 - 0: The maximum resident set size (KB) = 694348 + 0: The total amount of wall time = 450.164233 + 0: The maximum resident set size (KB) = 690580 Test 070 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,26 +2996,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 256.690710 - 0: The maximum resident set size (KB) = 678648 + 0: The total amount of wall time = 252.641199 + 0: The maximum resident set size (KB) = 674228 Test 071 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 156.629262 - 0: The maximum resident set size (KB) = 553836 + 0: The total amount of wall time = 150.076395 + 0: The maximum resident set size (KB) = 552208 Test 072 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3062,14 +3062,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 211.498868 - 0: The maximum resident set size (KB) = 1555192 + 0: The total amount of wall time = 213.883755 + 0: The maximum resident set size (KB) = 1551040 Test 073 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3080,14 +3080,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.677022 - 0: The maximum resident set size (KB) = 999372 + 0: The total amount of wall time = 369.752046 + 0: The maximum resident set size (KB) = 994420 Test 074 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3114,348 +3114,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 189.637628 - 0: The maximum resident set size (KB) = 741788 + 0: The total amount of wall time = 193.441631 + 0: The maximum resident set size (KB) = 744572 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.847768 - 0: The maximum resident set size (KB) = 740612 + 0: The total amount of wall time = 185.799106 + 0: The maximum resident set size (KB) = 742748 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.286263 - 0: The maximum resident set size (KB) = 744216 + 0: The total amount of wall time = 215.120006 + 0: The maximum resident set size (KB) = 751540 Test 077 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.660264 - 0: The maximum resident set size (KB) = 745260 + 0: The total amount of wall time = 194.889271 + 0: The maximum resident set size (KB) = 743536 Test 078 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.146564 - 0: The maximum resident set size (KB) = 787640 + 0: The total amount of wall time = 301.883929 + 0: The maximum resident set size (KB) = 792568 Test 079 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.863040 - 0: The maximum resident set size (KB) = 787012 + 0: The total amount of wall time = 299.012086 + 0: The maximum resident set size (KB) = 788760 Test 080 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.165110 - 0: The maximum resident set size (KB) = 758584 + 0: The total amount of wall time = 196.753020 + 0: The maximum resident set size (KB) = 757372 Test 081 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.322980 - 0: The maximum resident set size (KB) = 790276 + 0: The total amount of wall time = 196.664286 + 0: The maximum resident set size (KB) = 801196 Test 082 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.720059 - 0: The maximum resident set size (KB) = 1568936 + 0: The total amount of wall time = 220.527420 + 0: The maximum resident set size (KB) = 1558120 Test 083 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1313.002962 - 0: The maximum resident set size (KB) = 1008012 + 0: The total amount of wall time = 1277.492175 + 0: The maximum resident set size (KB) = 1008480 Test 084 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.297874 - 0: The maximum resident set size (KB) = 1138360 + 0: The total amount of wall time = 352.781452 + 0: The maximum resident set size (KB) = 1124200 Test 085 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 338.559695 - 0: The maximum resident set size (KB) = 1131288 + 0: The total amount of wall time = 349.683298 + 0: The maximum resident set size (KB) = 1125072 Test 086 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_unified_drag_suite_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.583950 - 0: The maximum resident set size (KB) = 1136260 + 0: The total amount of wall time = 351.212482 + 0: The maximum resident set size (KB) = 1132580 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.584115 - 0: The maximum resident set size (KB) = 1197104 + 0: The total amount of wall time = 374.821414 + 0: The maximum resident set size (KB) = 1212088 Test 088 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.923506 - 0: The maximum resident set size (KB) = 1134684 + 0: The total amount of wall time = 359.268878 + 0: The maximum resident set size (KB) = 1122420 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_unified_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.256515 - 0: The maximum resident set size (KB) = 1126356 + 0: The total amount of wall time = 358.059553 + 0: The maximum resident set size (KB) = 1130864 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.573488 - 0: The maximum resident set size (KB) = 1135144 + 0: The total amount of wall time = 354.083329 + 0: The maximum resident set size (KB) = 1118624 Test 091 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.585482 - 0: The maximum resident set size (KB) = 1123980 + 0: The total amount of wall time = 351.126310 + 0: The maximum resident set size (KB) = 1124228 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.424289 - 0: The maximum resident set size (KB) = 1120652 + 0: The total amount of wall time = 350.615119 + 0: The maximum resident set size (KB) = 1118264 Test 093 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.279162 - 0: The maximum resident set size (KB) = 1126480 + 0: The total amount of wall time = 355.092645 + 0: The maximum resident set size (KB) = 1126712 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 600.690975 - 0: The maximum resident set size (KB) = 1127692 + 0: The total amount of wall time = 579.399211 + 0: The maximum resident set size (KB) = 1128736 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.828131 - 0: The maximum resident set size (KB) = 1125548 + 0: The total amount of wall time = 343.389436 + 0: The maximum resident set size (KB) = 1121576 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 450.332934 - 0: The maximum resident set size (KB) = 1129988 + 0: The total amount of wall time = 433.734394 + 0: The maximum resident set size (KB) = 1134976 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.677453 - 0: The maximum resident set size (KB) = 1130216 + 0: The total amount of wall time = 358.069530 + 0: The maximum resident set size (KB) = 1117864 Test 098 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 356.543023 - 0: The maximum resident set size (KB) = 502320 + 0: The total amount of wall time = 358.311462 + 0: The maximum resident set size (KB) = 500240 Test 099 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3466,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 294.184744 - 0: The maximum resident set size (KB) = 1013180 + 0: The total amount of wall time = 302.664198 + 0: The maximum resident set size (KB) = 1012508 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3520,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 485.646818 - 0: The maximum resident set size (KB) = 945680 + 0: The total amount of wall time = 507.776479 + 0: The maximum resident set size (KB) = 946132 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3574,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 246.437515 - 0: The maximum resident set size (KB) = 906724 + 0: The total amount of wall time = 278.281809 + 0: The maximum resident set size (KB) = 909632 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3628,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 248.221965 - 0: The maximum resident set size (KB) = 862764 + 0: The total amount of wall time = 273.703949 + 0: The maximum resident set size (KB) = 851960 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3682,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 460.211738 - 0: The maximum resident set size (KB) = 979388 + 0: The total amount of wall time = 481.008686 + 0: The maximum resident set size (KB) = 970388 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.675212 - 0: The maximum resident set size (KB) = 892744 + 0: The total amount of wall time = 268.154322 + 0: The maximum resident set size (KB) = 888792 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.656595 - 0: The maximum resident set size (KB) = 864608 + 0: The total amount of wall time = 284.835953 + 0: The maximum resident set size (KB) = 866148 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3836,42 +3836,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 360.733368 - 0: The maximum resident set size (KB) = 910316 + 0: The total amount of wall time = 354.252344 + 0: The maximum resident set size (KB) = 907864 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.550315 - 0: The maximum resident set size (KB) = 835048 + 0: The total amount of wall time = 128.950916 + 0: The maximum resident set size (KB) = 828820 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 131.051805 - 0: The maximum resident set size (KB) = 788700 + 0: The total amount of wall time = 135.585995 + 0: The maximum resident set size (KB) = 793532 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3887,40 +3887,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.406087 - 0: The maximum resident set size (KB) = 1150744 + 0: The total amount of wall time = 177.788986 + 0: The maximum resident set size (KB) = 1146336 Test 110 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_2threads_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 79.136603 - 0: The maximum resident set size (KB) = 1097172 + 0: The total amount of wall time = 75.906807 + 0: The maximum resident set size (KB) = 1095876 Test 111 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.732382 - 0: The maximum resident set size (KB) = 1089088 + 0: The total amount of wall time = 93.192765 + 0: The maximum resident set size (KB) = 1094940 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3967,123 +3967,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 317.660900 - 0: The maximum resident set size (KB) = 965904 + 0: The total amount of wall time = 345.722727 + 0: The maximum resident set size (KB) = 965988 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.513743 - 0: The maximum resident set size (KB) = 1014248 + 0: The total amount of wall time = 352.954370 + 0: The maximum resident set size (KB) = 1007924 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 340.390496 - 0: The maximum resident set size (KB) = 995484 + 0: The total amount of wall time = 344.853376 + 0: The maximum resident set size (KB) = 1015524 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1087.422323 - 0: The maximum resident set size (KB) = 1172140 + 0: The total amount of wall time = 1080.666601 + 0: The maximum resident set size (KB) = 1176720 Test 116 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_debug_2threads_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 627.148368 - 0: The maximum resident set size (KB) = 1121984 + 0: The total amount of wall time = 624.339957 + 0: The maximum resident set size (KB) = 1121112 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1087.906318 - 0: The maximum resident set size (KB) = 1243892 + 0: The total amount of wall time = 1083.185110 + 0: The maximum resident set size (KB) = 1250600 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/rap_control_dyn64_phy32_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.678039 - 0: The maximum resident set size (KB) = 1028568 + 0: The total amount of wall time = 354.607459 + 0: The maximum resident set size (KB) = 1034996 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 310.656652 - 0: The maximum resident set size (KB) = 1339652 + 0: The total amount of wall time = 330.124055 + 0: The maximum resident set size (KB) = 1394160 Test 120 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 373.568302 - 0: The maximum resident set size (KB) = 1677332 + 0: The total amount of wall time = 426.902544 + 0: The maximum resident set size (KB) = 1713220 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4092,14 +4092,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 520.646175 - 0: The maximum resident set size (KB) = 1453072 + 0: The total amount of wall time = 500.178161 + 0: The maximum resident set size (KB) = 1418584 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,14 +4108,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 904.823844 - 0: The maximum resident set size (KB) = 1486632 + 0: The total amount of wall time = 904.458715 + 0: The maximum resident set size (KB) = 1495540 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1006.399421 - 0: The maximum resident set size (KB) = 1517504 + 0: The total amount of wall time = 1012.227977 + 0: The maximum resident set size (KB) = 1514072 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_docn_intel Checking test 125 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,14 +4141,14 @@ Checking test 125 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 458.442020 - 0: The maximum resident set size (KB) = 1436028 + 0: The total amount of wall time = 466.162499 + 0: The maximum resident set size (KB) = 1465772 Test 125 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_docn_oisst_intel Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,118 +4156,118 @@ Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 480.877590 - 0: The maximum resident set size (KB) = 1434488 + 0: The total amount of wall time = 469.350262 + 0: The maximum resident set size (KB) = 1427788 Test 126 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_cfsr_intel Checking test 127 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.343187 - 0: The maximum resident set size (KB) = 1030704 + 0: The total amount of wall time = 205.038169 + 0: The maximum resident set size (KB) = 1023072 Test 127 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_restart_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_restart_cfsr_intel Checking test 128 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.551985 - 0: The maximum resident set size (KB) = 992204 + 0: The total amount of wall time = 118.139015 + 0: The maximum resident set size (KB) = 996988 Test 128 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_gefs_intel Checking test 129 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 219.032285 - 0: The maximum resident set size (KB) = 901040 + 0: The total amount of wall time = 210.888556 + 0: The maximum resident set size (KB) = 897484 Test 129 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_iau_gefs_intel Checking test 130 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.348177 - 0: The maximum resident set size (KB) = 904896 + 0: The total amount of wall time = 203.831967 + 0: The maximum resident set size (KB) = 898744 Test 130 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_stochy_gefs_intel Checking test 131 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.453677 - 0: The maximum resident set size (KB) = 906092 + 0: The total amount of wall time = 204.316807 + 0: The maximum resident set size (KB) = 900416 Test 131 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_ciceC_cfsr_intel Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.518679 - 0: The maximum resident set size (KB) = 1020460 + 0: The total amount of wall time = 205.590471 + 0: The maximum resident set size (KB) = 1027088 Test 132 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_bulk_cfsr_intel Checking test 133 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.855348 - 0: The maximum resident set size (KB) = 1031192 + 0: The total amount of wall time = 203.584703 + 0: The maximum resident set size (KB) = 1023772 Test 133 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_bulk_gefs_intel Checking test 134 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.270061 - 0: The maximum resident set size (KB) = 900312 + 0: The total amount of wall time = 201.466851 + 0: The maximum resident set size (KB) = 904056 Test 134 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_mx025_cfsr_intel Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4276,14 +4276,14 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 535.994360 - 0: The maximum resident set size (KB) = 858852 + 0: The total amount of wall time = 548.341689 + 0: The maximum resident set size (KB) = 835680 Test 135 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_mx025_gefs_intel Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4292,77 +4292,77 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 535.677472 - 0: The maximum resident set size (KB) = 812124 + 0: The total amount of wall time = 529.885962 + 0: The maximum resident set size (KB) = 808060 Test 136 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_multiple_files_cfsr_intel Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.088901 - 0: The maximum resident set size (KB) = 1022784 + 0: The total amount of wall time = 205.544398 + 0: The maximum resident set size (KB) = 1033292 Test 137 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_3072x1536_cfsr_intel Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 285.177799 - 0: The maximum resident set size (KB) = 2316652 + 0: The total amount of wall time = 316.867077 + 0: The maximum resident set size (KB) = 2302048 Test 138 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_gfs_intel Checking test 139 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 288.367609 - 0: The maximum resident set size (KB) = 2322928 + 0: The total amount of wall time = 310.008471 + 0: The maximum resident set size (KB) = 2367036 Test 139 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_debug_cfsr_intel Checking test 140 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 459.599496 - 0: The maximum resident set size (KB) = 980864 + 0: The total amount of wall time = 456.977915 + 0: The maximum resident set size (KB) = 976796 Test 140 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_cfsr_faster_intel Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.450069 - 0: The maximum resident set size (KB) = 1026424 + 0: The total amount of wall time = 204.659575 + 0: The maximum resident set size (KB) = 1025612 Test 141 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_lnd_gswp3_intel Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4371,14 +4371,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.371192 - 0: The maximum resident set size (KB) = 223396 + 0: The total amount of wall time = 9.027375 + 0: The maximum resident set size (KB) = 222560 Test 142 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_lnd_gswp3_rst_intel Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4387,14 +4387,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 16.764693 - 0: The maximum resident set size (KB) = 220496 + 0: The total amount of wall time = 15.750430 + 0: The maximum resident set size (KB) = 220328 Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_atmlnd_sbs_intel Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4479,14 +4479,14 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.548429 - 0: The maximum resident set size (KB) = 1600272 + 0: The total amount of wall time = 283.704184 + 0: The maximum resident set size (KB) = 1615752 Test 144 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmwav_control_noaero_p8_intel Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4529,14 +4529,14 @@ Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 129.143100 - 0: The maximum resident set size (KB) = 1580848 + 0: The total amount of wall time = 130.630387 + 0: The maximum resident set size (KB) = 1570484 Test 145 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_atmwav_intel Checking test 146 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4580,14 +4580,14 @@ Checking test 146 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 120.691865 - 0: The maximum resident set size (KB) = 601080 + 0: The total amount of wall time = 118.570768 + 0: The maximum resident set size (KB) = 593468 Test 146 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4631,14 +4631,14 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 308.773492 - 0: The maximum resident set size (KB) = 1668440 + 0: The total amount of wall time = 314.644092 + 0: The maximum resident set size (KB) = 1676048 Test 147 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 385.044828 - 0: The maximum resident set size (KB) = 1694192 + 0: The total amount of wall time = 384.233888 + 0: The maximum resident set size (KB) = 1672756 Test 148 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_145862/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4733,12 +4733,12 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 398.731149 - 0: The maximum resident set size (KB) = 1692144 + 0: The total amount of wall time = 381.650454 + 0: The maximum resident set size (KB) = 1708880 Test 149 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Sep 8 10:04:43 UTC 2023 -Elapsed time: 07h:17m:18s. Have a nice day! +Sun Sep 17 22:27:00 UTC 2023 +Elapsed time: 02h:01m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_noaacloud.log b/tests/logs/RegressionTests_noaacloud.log new file mode 100644 index 0000000000..2e84cdbe8c --- /dev/null +++ b/tests/logs/RegressionTests_noaacloud.log @@ -0,0 +1,991 @@ +Wed Sep 13 18:53:13 UTC 2023 +Start Regression test + +Testing UFSWM Hash: 181bed7dc89e0cf7792a108741ce12c0192b2245 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 9b5825b7a6c0c07a3d936d0222917677209a07f0 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 59c554a12df3a04e0402ce5f17bb32cbbac193b2 WW3 (6.07.1-341-g59c554a1) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_intel elapsed time 677 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 634 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 615 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 654 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 705 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Thu Sep 14 12:45:30 UTC 2023 +Start Regression test + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_noaero_p8_intel +Checking test 001 cpld_control_noaero_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 235.067933 + 0: The maximum resident set size (KB) = 1819976 + +Test 001 cpld_control_noaero_p8_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/cpld_control_gfsv17_intel +Checking test 002 cpld_control_gfsv17_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 194.486526 + 0: The maximum resident set size (KB) = 1780520 + +Test 002 cpld_control_gfsv17_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_cfsr_intel +Checking test 003 datm_cdeps_control_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 140.720050 + 0: The maximum resident set size (KB) = 1254256 + +Test 003 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_control_gefs_intel +Checking test 004 datm_cdeps_control_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 145.725806 + 0: The maximum resident set size (KB) = 1137660 + +Test 004 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_iau_gefs_intel +Checking test 005 datm_cdeps_iau_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 138.806743 + 0: The maximum resident set size (KB) = 1139260 + +Test 005 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_12325/datm_cdeps_stochy_gefs_intel +Checking test 006 datm_cdeps_stochy_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 136.898247 + 0: The maximum resident set size (KB) = 1135528 + +Test 006 datm_cdeps_stochy_gefs_intel PASS + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/atmwav_control_noaero_p8_intel +Checking test 001 atmwav_control_noaero_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 89.786822 + 0: The maximum resident set size (KB) = 1740024 + +Test 007 atmwav_control_noaero_p8_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/control_atmwav_intel +Checking test 002 control_atmwav_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 80.879828 + 0: The maximum resident set size (KB) = 760744 + +Test 008 control_atmwav_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_intel +Checking test 003 regional_atmaq_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 570.936950 + 0: The maximum resident set size (KB) = 5440640 + +Test 009 regional_atmaq_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_13056/regional_atmaq_faster_intel +Checking test 004 regional_atmaq_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 461.022740 + 0: The maximum resident set size (KB) = 5443032 + +Test 010 regional_atmaq_faster_intel PASS + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27559/control_c384_intel +Checking test 001 control_c384_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 458.101623 + 0: The maximum resident set size (KB) = 1510240 + +Test 011 control_c384_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_latlon_intel +Checking test 001 control_latlon_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 116.591935 + 0: The maximum resident set size (KB) = 739644 + +Test 012 control_latlon_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_lndp_intel +Checking test 001 control_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 74.577322 + 0: The maximum resident set size (KB) = 744616 + +Test 013 control_lndp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29229/control_p8_lndp_intel +Checking test 001 control_p8_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 270.886762 + 0: The maximum resident set size (KB) = 1711908 + +Test 014 control_p8_lndp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_29775/control_stochy_intel +Checking test 001 control_stochy_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 79.032013 + 0: The maximum resident set size (KB) = 745464 + +Test 015 control_stochy_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_18036/regional_control_intel +Checking test 001 regional_control_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 256.592547 + 0: The maximum resident set size (KB) = 1189296 + +Test 016 regional_control_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_noquilt_intel +Checking test 001 regional_noquilt_intel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 254.564088 + 0: The maximum resident set size (KB) = 1456300 + +Test 017 regional_noquilt_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_flake_intel +Checking test 002 control_flake_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 263.335844 + 0: The maximum resident set size (KB) = 791788 + +Test 018 control_flake_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr4_intel +Checking test 002 control_iovr4_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 118.289092 + 0: The maximum resident set size (KB) = 738932 + +Test 019 control_iovr4_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_wrtGauss_netcdf_parallel_intel +Checking test 002 control_wrtGauss_netcdf_parallel_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 118.455093 + 0: The maximum resident set size (KB) = 738948 + +Test 020 control_wrtGauss_netcdf_parallel_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_netcdf_parallel_intel +Checking test 002 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + + 0: The total amount of wall time = 315.339534 + 0: The maximum resident set size (KB) = 1189296 + +Test 021 regional_netcdf_parallel_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_16411/control_c48_intel +Checking test 003 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 355.289641 +0: The maximum resident set size (KB) = 725172 + +Test 022 control_c48_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_27499/control_CubedSphereGrid_intel +Checking test 003 control_CubedSphereGrid_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 156.608547 + 0: The maximum resident set size (KB) = 740744 + +Test 023 control_CubedSphereGrid_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_10694/control_iovr5_intel +Checking test 003 control_iovr5_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 180.745637 + 0: The maximum resident set size (KB) = 740216 + +Test 024 control_iovr5_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_2dwrtdecomp_intel +Checking test 003 regional_2dwrtdecomp_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 258.266724 + 0: The maximum resident set size (KB) = 1189112 + +Test 025 regional_2dwrtdecomp_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_wofs_intel +Checking test 004 regional_wofs_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 317.986202 + 0: The maximum resident set size (KB) = 997696 + +Test 026 regional_wofs_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rap_control_intel +Checking test 005 rap_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 376.232736 + 0: The maximum resident set size (KB) = 1313760 + +Test 027 rap_control_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_spp_sppt_shum_skeb_intel +Checking test 006 regional_spp_sppt_shum_skeb_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 259.976109 + 0: The maximum resident set size (KB) = 1358860 + +Test 028 regional_spp_sppt_shum_skeb_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1beta_intel +Checking test 007 rrfs_v1beta_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 367.928558 + 0: The maximum resident set size (KB) = 1275508 + +Test 029 rrfs_v1beta_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_intel +Checking test 008 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 451.901667 + 0: The maximum resident set size (KB) = 878300 + +Test 030 rrfs_v1nssl_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/rrfs_v1nssl_nohailnoccn_intel +Checking test 009 rrfs_v1nssl_nohailnoccn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 434.283032 + 0: The maximum resident set size (KB) = 986664 + +Test 031 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/regional_control_faster_intel +Checking test 010 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 236.396016 + 0: The maximum resident set size (KB) = 1188316 + +Test 032 regional_control_faster_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_intel +Checking test 011 hafs_regional_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 217.543716 + 0: The maximum resident set size (KB) = 1363136 + +Test 033 hafs_regional_atm_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 012 hafs_regional_atm_thompson_gfdlsf_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 332.106259 + 0: The maximum resident set size (KB) = 1696880 + +Test 034 hafs_regional_atm_thompson_gfdlsf_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_ocn_intel +Checking test 013 hafs_regional_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 342.702251 + 0: The maximum resident set size (KB) = 1492844 + +Test 035 hafs_regional_atm_ocn_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/hafs_regional_atm_wav_intel +Checking test 014 hafs_regional_atm_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 646.352130 + 0: The maximum resident set size (KB) = 1507564 + +Test 036 hafs_regional_atm_wav_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_control_cfsr_faster_intel +Checking test 015 datm_cdeps_control_cfsr_faster_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 140.076360 + 0: The maximum resident set size (KB) = 1268896 + +Test 037 datm_cdeps_control_cfsr_faster_intel PASS + + +baseline dir = /contrib/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /lustre//stmp2/Zachary.Shrader/FV3_RT/rt_23590/datm_cdeps_lnd_gswp3_intel +Checking test 016 datm_cdeps_lnd_gswp3_intel results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 12.440630 + 0: The maximum resident set size (KB) = 401492 + +Test 038 datm_cdeps_lnd_gswp3_intel PASS + +REGRESSION TEST WAS SUCCESSFUL +Wed Sep 13 20:40:38 UTC 2023 +Elapsed time: 01h:47m:26s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 39926e9ca1..9e1fb49e5f 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Tue Sep 12 18:59:59 CDT 2023 +Fri Sep 15 19:14:04 CDT 2023 Start Regression test -Testing UFSWM Hash: c7edaf94b82a877d0f34bfb2b9e358d7415fa8b1 +Testing UFSWM Hash: a5012ee7030309bc386e1caea0febb9130e2cdd5 Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 678 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 198 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 636 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 293 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 725 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 662 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 700 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 143 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 240 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 669 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 411 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 760 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 796 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 608 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 681 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 137 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 722 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 264 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 798 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 713 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 832 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 709 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 739 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 787 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 301 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1107 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 875 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 283 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 771 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 279 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1066 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 764 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 324 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 769 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 833 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 765 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 762 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 877 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1104 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 272 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 819 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1101 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.305857 - 0: The maximum resident set size (KB) = 3167748 + 0: The total amount of wall time = 305.543325 + 0: The maximum resident set size (KB) = 3170772 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 233.192925 - 0: The maximum resident set size (KB) = 1708748 + 0: The total amount of wall time = 217.133111 + 0: The maximum resident set size (KB) = 1709752 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.415343 - 0: The maximum resident set size (KB) = 3207400 + 0: The total amount of wall time = 339.272829 + 0: The maximum resident set size (KB) = 3205908 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.304166 - 0: The maximum resident set size (KB) = 3257296 + 0: The total amount of wall time = 196.116423 + 0: The maximum resident set size (KB) = 3253436 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 378.095322 - 0: The maximum resident set size (KB) = 3221736 + 0: The total amount of wall time = 341.891510 + 0: The maximum resident set size (KB) = 3218164 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.645275 - 0: The maximum resident set size (KB) = 3094224 + 0: The total amount of wall time = 202.120385 + 0: The maximum resident set size (KB) = 3088584 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.344444 - 0: The maximum resident set size (KB) = 3550864 + 0: The total amount of wall time = 364.912405 + 0: The maximum resident set size (KB) = 3544436 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.041314 - 0: The maximum resident set size (KB) = 3199284 + 0: The total amount of wall time = 342.446121 + 0: The maximum resident set size (KB) = 3202624 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.174819 - 0: The maximum resident set size (KB) = 3065108 + 0: The total amount of wall time = 287.921176 + 0: The maximum resident set size (KB) = 3059908 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.243218 - 0: The maximum resident set size (KB) = 3210832 + 0: The total amount of wall time = 339.835625 + 0: The maximum resident set size (KB) = 3218060 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 630.529757 - 0: The maximum resident set size (KB) = 3319160 + 0: The total amount of wall time = 587.985791 + 0: The maximum resident set size (KB) = 3322788 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 377.668188 - 0: The maximum resident set size (KB) = 3628824 + 0: The total amount of wall time = 414.482642 + 0: The maximum resident set size (KB) = 3556676 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 769.659409 - 0: The maximum resident set size (KB) = 4090688 + 0: The total amount of wall time = 745.804956 + 0: The maximum resident set size (KB) = 4118300 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.288900 - 0: The maximum resident set size (KB) = 4356716 + 0: The total amount of wall time = 506.036997 + 0: The maximum resident set size (KB) = 4381136 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.790174 - 0: The maximum resident set size (KB) = 1732216 + 0: The total amount of wall time = 261.665010 + 0: The maximum resident set size (KB) = 1744376 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 291.697551 - 0: The maximum resident set size (KB) = 1788408 + 0: The total amount of wall time = 265.018054 + 0: The maximum resident set size (KB) = 1779104 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 528.317457 - 0: The maximum resident set size (KB) = 3243208 + 0: The total amount of wall time = 544.850071 + 0: The maximum resident set size (KB) = 3241868 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.072912 - 0: The maximum resident set size (KB) = 1751772 + 0: The total amount of wall time = 373.310731 + 0: The maximum resident set size (KB) = 1755416 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.743191 - 0: The maximum resident set size (KB) = 1767156 + 0: The total amount of wall time = 263.132566 + 0: The maximum resident set size (KB) = 1780092 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 501.876298 - 0: The maximum resident set size (KB) = 2841168 + 0: The total amount of wall time = 498.443742 + 0: The maximum resident set size (KB) = 2837568 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.309292 - 0: The maximum resident set size (KB) = 3210624 + 0: The total amount of wall time = 322.299650 + 0: The maximum resident set size (KB) = 3209640 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1213.667511 - 0: The maximum resident set size (KB) = 1781548 + 0: The total amount of wall time = 1213.843484 + 0: The maximum resident set size (KB) = 1776924 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 583.516994 - 0: The maximum resident set size (KB) = 1144960 + 0: The total amount of wall time = 598.410359 + 0: The maximum resident set size (KB) = 1137416 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1077.803918 - 0: The maximum resident set size (KB) = 1675072 + 0: The total amount of wall time = 1062.470587 + 0: The maximum resident set size (KB) = 1687168 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1423.212043 - 0: The maximum resident set size (KB) = 1721408 + 0: The total amount of wall time = 1366.520682 + 0: The maximum resident set size (KB) = 1721948 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.800766 - 0: The maximum resident set size (KB) = 694448 + 0: The total amount of wall time = 197.586126 + 0: The maximum resident set size (KB) = 692908 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,21 +1705,21 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.792248 - 0: The maximum resident set size (KB) = 640908 + 0: The total amount of wall time = 131.608893 + 0: The maximum resident set size (KB) = 639692 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.820517 - 0: The maximum resident set size (KB) = 647408 + 0: The total amount of wall time = 141.631683 + 0: The maximum resident set size (KB) = 647952 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.356824 - 0: The maximum resident set size (KB) = 643832 + 0: The total amount of wall time = 136.341380 + 0: The maximum resident set size (KB) = 642204 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.650847 - 0: The maximum resident set size (KB) = 638984 + 0: The total amount of wall time = 137.920257 + 0: The maximum resident set size (KB) = 642080 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 347.028885 -0: The maximum resident set size (KB) = 821612 +0: The total amount of wall time = 347.437753 +0: The maximum resident set size (KB) = 834580 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 530.730026 - 0: The maximum resident set size (KB) = 783560 + 0: The total amount of wall time = 529.241914 + 0: The maximum resident set size (KB) = 788972 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.695677 - 0: The maximum resident set size (KB) = 1383236 + 0: The total amount of wall time = 749.660258 + 0: The maximum resident set size (KB) = 1388060 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 512.743090 - 0: The maximum resident set size (KB) = 1452968 + 0: The total amount of wall time = 513.343681 + 0: The maximum resident set size (KB) = 1459348 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.806473 - 0: The maximum resident set size (KB) = 648560 + 0: The total amount of wall time = 90.000531 + 0: The maximum resident set size (KB) = 645184 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.793823 - 0: The maximum resident set size (KB) = 557284 + 0: The total amount of wall time = 47.875599 + 0: The maximum resident set size (KB) = 555404 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.638327 - 0: The maximum resident set size (KB) = 647548 + 0: The total amount of wall time = 82.839605 + 0: The maximum resident set size (KB) = 650384 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.251735 - 0: The maximum resident set size (KB) = 644916 + 0: The total amount of wall time = 136.648287 + 0: The maximum resident set size (KB) = 642196 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.334927 - 0: The maximum resident set size (KB) = 643832 + 0: The total amount of wall time = 135.649924 + 0: The maximum resident set size (KB) = 642320 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.368469 - 0: The maximum resident set size (KB) = 1615132 + 0: The total amount of wall time = 166.486122 + 0: The maximum resident set size (KB) = 1622200 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.693634 - 0: The maximum resident set size (KB) = 932808 + 0: The total amount of wall time = 89.760148 + 0: The maximum resident set size (KB) = 940548 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.796893 - 0: The maximum resident set size (KB) = 1635068 + 0: The total amount of wall time = 173.080322 + 0: The maximum resident set size (KB) = 1633316 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.929892 - 0: The maximum resident set size (KB) = 884340 + 0: The total amount of wall time = 92.747867 + 0: The maximum resident set size (KB) = 878796 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.388043 - 0: The maximum resident set size (KB) = 1598348 + 0: The total amount of wall time = 173.910186 + 0: The maximum resident set size (KB) = 1600436 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.146956 - 0: The maximum resident set size (KB) = 1699632 + 0: The total amount of wall time = 173.070885 + 0: The maximum resident set size (KB) = 1704484 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 315.584245 - 0: The maximum resident set size (KB) = 1612584 + 0: The total amount of wall time = 309.066637 + 0: The maximum resident set size (KB) = 1631460 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.007811 - 0: The maximum resident set size (KB) = 1692268 + 0: The total amount of wall time = 226.055622 + 0: The maximum resident set size (KB) = 1684944 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.062554 - 0: The maximum resident set size (KB) = 1627552 + 0: The total amount of wall time = 169.827694 + 0: The maximum resident set size (KB) = 1628924 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.736483 - 0: The maximum resident set size (KB) = 1636624 + 0: The total amount of wall time = 188.911090 + 0: The maximum resident set size (KB) = 1634996 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.266979 - 0: The maximum resident set size (KB) = 1095408 + 0: The total amount of wall time = 289.318155 + 0: The maximum resident set size (KB) = 1061024 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.665806 - 0: The maximum resident set size (KB) = 1090600 + 0: The total amount of wall time = 148.496223 + 0: The maximum resident set size (KB) = 1091084 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.499631 - 0: The maximum resident set size (KB) = 1099452 + 0: The total amount of wall time = 287.314522 + 0: The maximum resident set size (KB) = 1098904 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.007744 - 0: The maximum resident set size (KB) = 1089644 + 0: The total amount of wall time = 148.491142 + 0: The maximum resident set size (KB) = 1088440 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.591830 - 0: The maximum resident set size (KB) = 1094972 + 0: The total amount of wall time = 308.420669 + 0: The maximum resident set size (KB) = 1092200 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 202.837573 - 0: The maximum resident set size (KB) = 1078644 + 0: The total amount of wall time = 200.121869 + 0: The maximum resident set size (KB) = 1081656 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 287.673339 - 0: The maximum resident set size (KB) = 1363912 + 0: The total amount of wall time = 285.160104 + 0: The maximum resident set size (KB) = 1364752 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 285.854932 - 0: The maximum resident set size (KB) = 1099288 + 0: The total amount of wall time = 284.965276 + 0: The maximum resident set size (KB) = 1092036 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.282141 - 0: The maximum resident set size (KB) = 1098068 + 0: The total amount of wall time = 288.887587 + 0: The maximum resident set size (KB) = 1092800 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.774366 - 0: The maximum resident set size (KB) = 920664 + 0: The total amount of wall time = 369.070876 + 0: The maximum resident set size (KB) = 917044 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.027703 - 0: The maximum resident set size (KB) = 1243356 + 0: The total amount of wall time = 450.869939 + 0: The maximum resident set size (KB) = 1243584 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 266.722626 - 0: The maximum resident set size (KB) = 1211780 + 0: The total amount of wall time = 263.230275 + 0: The maximum resident set size (KB) = 1205152 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 473.196533 - 0: The maximum resident set size (KB) = 1176644 + 0: The total amount of wall time = 473.755983 + 0: The maximum resident set size (KB) = 1171380 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 457.725238 - 0: The maximum resident set size (KB) = 1332248 + 0: The total amount of wall time = 455.615947 + 0: The maximum resident set size (KB) = 1320724 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 228.757255 - 0: The maximum resident set size (KB) = 1138080 + 0: The total amount of wall time = 227.664957 + 0: The maximum resident set size (KB) = 1147888 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.915289 - 0: The maximum resident set size (KB) = 1245832 + 0: The total amount of wall time = 452.037650 + 0: The maximum resident set size (KB) = 1242924 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 478.515737 - 0: The maximum resident set size (KB) = 1170232 + 0: The total amount of wall time = 475.289962 + 0: The maximum resident set size (KB) = 1173964 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 335.228636 - 0: The maximum resident set size (KB) = 1170428 + 0: The total amount of wall time = 332.814561 + 0: The maximum resident set size (KB) = 1182316 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 435.458532 - 0: The maximum resident set size (KB) = 1191760 + 0: The total amount of wall time = 433.100171 + 0: The maximum resident set size (KB) = 1187628 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 431.841456 - 0: The maximum resident set size (KB) = 1080180 + 0: The total amount of wall time = 433.484098 + 0: The maximum resident set size (KB) = 1032192 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 454.121481 - 0: The maximum resident set size (KB) = 1118976 + 0: The total amount of wall time = 471.928964 + 0: The maximum resident set size (KB) = 1124488 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 366.193926 - 0: The maximum resident set size (KB) = 1133656 + 0: The total amount of wall time = 363.050227 + 0: The maximum resident set size (KB) = 1132540 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.498757 - 0: The maximum resident set size (KB) = 1121900 + 0: The total amount of wall time = 320.876030 + 0: The maximum resident set size (KB) = 1117492 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 328.733320 - 0: The maximum resident set size (KB) = 1032384 + 0: The total amount of wall time = 325.284721 + 0: The maximum resident set size (KB) = 1024028 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 446.270579 - 0: The maximum resident set size (KB) = 1208960 + 0: The total amount of wall time = 442.161765 + 0: The maximum resident set size (KB) = 1205736 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.689854 - 0: The maximum resident set size (KB) = 798364 + 0: The total amount of wall time = 534.965329 + 0: The maximum resident set size (KB) = 801428 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.399538 - 0: The maximum resident set size (KB) = 909936 + 0: The total amount of wall time = 514.708049 + 0: The maximum resident set size (KB) = 926036 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_gf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.532288 - 0: The maximum resident set size (KB) = 1230436 + 0: The total amount of wall time = 450.027377 + 0: The maximum resident set size (KB) = 1227288 Test 077 hrrr_gf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_c3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,14 +3472,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 448.727145 - 0: The maximum resident set size (KB) = 1235588 + 0: The total amount of wall time = 453.081531 + 0: The maximum resident set size (KB) = 1234308 Test 078 hrrr_c3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3490,14 +3490,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.068011 - 0: The maximum resident set size (KB) = 822820 + 0: The total amount of wall time = 338.180828 + 0: The maximum resident set size (KB) = 818160 Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3508,14 +3508,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.138681 - 0: The maximum resident set size (KB) = 763280 + 0: The total amount of wall time = 345.905561 + 0: The maximum resident set size (KB) = 815436 Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3526,26 +3526,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.473984 - 0: The maximum resident set size (KB) = 815388 + 0: The total amount of wall time = 185.690262 + 0: The maximum resident set size (KB) = 812008 Test 081 control_ras_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.865442 - 0: The maximum resident set size (KB) = 702516 + 0: The total amount of wall time = 112.721373 + 0: The maximum resident set size (KB) = 703456 Test 082 control_wam_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3592,14 +3592,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.153314 - 0: The maximum resident set size (KB) = 1610120 + 0: The total amount of wall time = 155.106836 + 0: The maximum resident set size (KB) = 1587544 Test 083 control_p8_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.546342 - 0: The maximum resident set size (KB) = 1060188 + 0: The total amount of wall time = 266.128311 + 0: The maximum resident set size (KB) = 1094592 Test 084 regional_control_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3644,348 +3644,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.176704 - 0: The maximum resident set size (KB) = 801316 + 0: The total amount of wall time = 147.116316 + 0: The maximum resident set size (KB) = 802468 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.515578 - 0: The maximum resident set size (KB) = 801840 + 0: The total amount of wall time = 151.887417 + 0: The maximum resident set size (KB) = 799752 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.597160 - 0: The maximum resident set size (KB) = 809636 + 0: The total amount of wall time = 169.863345 + 0: The maximum resident set size (KB) = 808928 Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.866835 - 0: The maximum resident set size (KB) = 808124 + 0: The total amount of wall time = 152.203896 + 0: The maximum resident set size (KB) = 808636 Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.169154 - 0: The maximum resident set size (KB) = 851260 + 0: The total amount of wall time = 239.993851 + 0: The maximum resident set size (KB) = 851604 Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.401381 - 0: The maximum resident set size (KB) = 850844 + 0: The total amount of wall time = 234.636253 + 0: The maximum resident set size (KB) = 851548 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.133083 - 0: The maximum resident set size (KB) = 810008 + 0: The total amount of wall time = 154.153299 + 0: The maximum resident set size (KB) = 816336 Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.262911 - 0: The maximum resident set size (KB) = 858260 + 0: The total amount of wall time = 156.045110 + 0: The maximum resident set size (KB) = 862308 Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.592805 - 0: The maximum resident set size (KB) = 1633688 + 0: The total amount of wall time = 172.078029 + 0: The maximum resident set size (KB) = 1643028 Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 989.032248 - 0: The maximum resident set size (KB) = 1113468 + 0: The total amount of wall time = 1029.518485 + 0: The maximum resident set size (KB) = 1108848 Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.537452 - 0: The maximum resident set size (KB) = 1188996 + 0: The total amount of wall time = 280.444383 + 0: The maximum resident set size (KB) = 1160480 Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.328762 - 0: The maximum resident set size (KB) = 1184024 + 0: The total amount of wall time = 276.971337 + 0: The maximum resident set size (KB) = 1188876 Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.338044 - 0: The maximum resident set size (KB) = 1183944 + 0: The total amount of wall time = 283.980625 + 0: The maximum resident set size (KB) = 1198088 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.232513 - 0: The maximum resident set size (KB) = 1267332 + 0: The total amount of wall time = 290.930575 + 0: The maximum resident set size (KB) = 1269668 Test 098 rap_diag_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.418921 - 0: The maximum resident set size (KB) = 1199152 + 0: The total amount of wall time = 274.868598 + 0: The maximum resident set size (KB) = 1196920 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.513516 - 0: The maximum resident set size (KB) = 1192480 + 0: The total amount of wall time = 289.237636 + 0: The maximum resident set size (KB) = 1199228 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.454310 - 0: The maximum resident set size (KB) = 1192748 + 0: The total amount of wall time = 306.662524 + 0: The maximum resident set size (KB) = 1192656 Test 101 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.719366 - 0: The maximum resident set size (KB) = 1184152 + 0: The total amount of wall time = 281.805123 + 0: The maximum resident set size (KB) = 1198088 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.488115 - 0: The maximum resident set size (KB) = 1199312 + 0: The total amount of wall time = 275.238459 + 0: The maximum resident set size (KB) = 1189192 Test 103 rap_noah_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.821691 - 0: The maximum resident set size (KB) = 1189380 + 0: The total amount of wall time = 279.276378 + 0: The maximum resident set size (KB) = 1190708 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.809741 - 0: The maximum resident set size (KB) = 1197176 + 0: The total amount of wall time = 453.392657 + 0: The maximum resident set size (KB) = 1184560 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.227318 - 0: The maximum resident set size (KB) = 1186228 + 0: The total amount of wall time = 271.702008 + 0: The maximum resident set size (KB) = 1183628 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.611959 - 0: The maximum resident set size (KB) = 1198004 + 0: The total amount of wall time = 353.314261 + 0: The maximum resident set size (KB) = 1200688 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.244629 - 0: The maximum resident set size (KB) = 1188676 + 0: The total amount of wall time = 276.991155 + 0: The maximum resident set size (KB) = 1192104 Test 108 rap_flake_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.095637 - 0: The maximum resident set size (KB) = 594284 + 0: The total amount of wall time = 288.724149 + 0: The maximum resident set size (KB) = 593036 Test 109 control_wam_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3996,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 261.588240 - 0: The maximum resident set size (KB) = 1106872 + 0: The total amount of wall time = 248.188467 + 0: The maximum resident set size (KB) = 1094336 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4050,14 +4050,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 375.376052 - 0: The maximum resident set size (KB) = 1111464 + 0: The total amount of wall time = 367.313322 + 0: The maximum resident set size (KB) = 1104484 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.369643 - 0: The maximum resident set size (KB) = 1038116 + 0: The total amount of wall time = 190.654294 + 0: The maximum resident set size (KB) = 995344 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.321355 - 0: The maximum resident set size (KB) = 984236 + 0: The total amount of wall time = 192.516067 + 0: The maximum resident set size (KB) = 987196 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 380.954640 - 0: The maximum resident set size (KB) = 1130192 + 0: The total amount of wall time = 389.927210 + 0: The maximum resident set size (KB) = 1077044 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.610735 - 0: The maximum resident set size (KB) = 978276 + 0: The total amount of wall time = 164.835707 + 0: The maximum resident set size (KB) = 982928 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4320,14 +4320,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 201.470680 - 0: The maximum resident set size (KB) = 982760 + 0: The total amount of wall time = 201.937086 + 0: The maximum resident set size (KB) = 981276 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4366,42 +4366,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 276.377812 - 0: The maximum resident set size (KB) = 1057868 + 0: The total amount of wall time = 274.312482 + 0: The maximum resident set size (KB) = 1053848 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.956683 - 0: The maximum resident set size (KB) = 942816 + 0: The total amount of wall time = 98.661740 + 0: The maximum resident set size (KB) = 943084 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.110697 - 0: The maximum resident set size (KB) = 894868 + 0: The total amount of wall time = 100.993474 + 0: The maximum resident set size (KB) = 884912 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 114.086234 - 0: The maximum resident set size (KB) = 1253804 + 0: The total amount of wall time = 115.735109 + 0: The maximum resident set size (KB) = 1252072 Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.346636 - 0: The maximum resident set size (KB) = 1176712 + 0: The total amount of wall time = 51.032680 + 0: The maximum resident set size (KB) = 1166148 Test 121 conus13km_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.980992 - 0: The maximum resident set size (KB) = 1185960 + 0: The total amount of wall time = 62.953162 + 0: The maximum resident set size (KB) = 1192200 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,123 +4497,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 245.301770 - 0: The maximum resident set size (KB) = 1049568 + 0: The total amount of wall time = 259.144612 + 0: The maximum resident set size (KB) = 1098432 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.021288 - 0: The maximum resident set size (KB) = 1081056 + 0: The total amount of wall time = 275.476447 + 0: The maximum resident set size (KB) = 1080412 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.734689 - 0: The maximum resident set size (KB) = 1070188 + 0: The total amount of wall time = 272.746865 + 0: The maximum resident set size (KB) = 1069332 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 821.422393 - 0: The maximum resident set size (KB) = 1276724 + 0: The total amount of wall time = 851.027482 + 0: The maximum resident set size (KB) = 1273136 Test 126 conus13km_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 481.833049 - 0: The maximum resident set size (KB) = 1201068 + 0: The total amount of wall time = 490.290659 + 0: The maximum resident set size (KB) = 1202320 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 854.555493 - 0: The maximum resident set size (KB) = 1350304 + 0: The total amount of wall time = 841.503806 + 0: The maximum resident set size (KB) = 1344580 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.436483 - 0: The maximum resident set size (KB) = 1107368 + 0: The total amount of wall time = 285.967280 + 0: The maximum resident set size (KB) = 1106700 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 253.064110 - 0: The maximum resident set size (KB) = 1189604 + 0: The total amount of wall time = 249.250914 + 0: The maximum resident set size (KB) = 1251796 -Test 130 hafs_regional_atm_intel PASS +Test 130 hafs_regional_atm_intel PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 326.929144 - 0: The maximum resident set size (KB) = 1585112 + 0: The total amount of wall time = 339.932042 + 0: The maximum resident set size (KB) = 1587652 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 375.263877 - 0: The maximum resident set size (KB) = 1428356 + 0: The total amount of wall time = 384.935997 + 0: The maximum resident set size (KB) = 1427748 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4638,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 723.137792 - 0: The maximum resident set size (KB) = 1452404 + 0: The total amount of wall time = 729.902847 + 0: The maximum resident set size (KB) = 1457304 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4656,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 827.872541 - 0: The maximum resident set size (KB) = 1437480 + 0: The total amount of wall time = 845.087884 + 0: The maximum resident set size (KB) = 1478016 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4685,14 +4685,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 434.997169 - 0: The maximum resident set size (KB) = 654976 + 0: The total amount of wall time = 342.901251 + 0: The maximum resident set size (KB) = 660816 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4714,14 +4714,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 351.290827 - 0: The maximum resident set size (KB) = 512948 + 0: The total amount of wall time = 371.473913 + 0: The maximum resident set size (KB) = 503720 Test 136 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,14 +4730,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 388.687680 - 0: The maximum resident set size (KB) = 668120 + 0: The total amount of wall time = 405.674487 + 0: The maximum resident set size (KB) = 663244 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4784,14 +4784,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.341015 - 0: The maximum resident set size (KB) = 351924 + 0: The total amount of wall time = 167.416179 + 0: The maximum resident set size (KB) = 406312 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4838,14 +4838,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.856013 - 0: The maximum resident set size (KB) = 378968 + 0: The total amount of wall time = 168.382678 + 0: The maximum resident set size (KB) = 376808 Test 139 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4927,14 +4927,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.708770 - 0: The maximum resident set size (KB) = 486556 + 0: The total amount of wall time = 435.764103 + 0: The maximum resident set size (KB) = 487004 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5016,14 +5016,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 462.637350 - 0: The maximum resident set size (KB) = 474064 + 0: The total amount of wall time = 459.320786 + 0: The maximum resident set size (KB) = 474260 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 218.016634 - 0: The maximum resident set size (KB) = 670968 + 0: The total amount of wall time = 218.004935 + 0: The maximum resident set size (KB) = 670728 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 207.020789 - 0: The maximum resident set size (KB) = 667648 + 0: The total amount of wall time = 203.384540 + 0: The maximum resident set size (KB) = 667424 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,14 +5090,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 216.233795 - 0: The maximum resident set size (KB) = 534740 + 0: The total amount of wall time = 217.890834 + 0: The maximum resident set size (KB) = 535384 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5106,42 +5106,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.068891 - 0: The maximum resident set size (KB) = 667332 + 0: The total amount of wall time = 285.721737 + 0: The maximum resident set size (KB) = 721204 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.896689 - 0: The maximum resident set size (KB) = 370740 + 0: The total amount of wall time = 63.985171 + 0: The maximum resident set size (KB) = 420272 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 735.517339 - 0: The maximum resident set size (KB) = 728972 + 0: The total amount of wall time = 756.253884 + 0: The maximum resident set size (KB) = 732424 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5152,14 +5152,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 539.793421 - 0: The maximum resident set size (KB) = 810716 + 0: The total amount of wall time = 533.783561 + 0: The maximum resident set size (KB) = 814828 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,14 +5167,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 341.169084 - 0: The maximum resident set size (KB) = 1406552 + 0: The total amount of wall time = 339.237018 + 0: The maximum resident set size (KB) = 1411332 Test 149 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5182,131 +5182,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.391226 - 0: The maximum resident set size (KB) = 1400424 + 0: The total amount of wall time = 338.737863 + 0: The maximum resident set size (KB) = 1390400 Test 150 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 950.120411 - 0: The maximum resident set size (KB) = 1151120 + 0: The total amount of wall time = 943.114535 + 0: The maximum resident set size (KB) = 1154648 Test 151 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.850723 - 0: The maximum resident set size (KB) = 1126892 + 0: The total amount of wall time = 146.960450 + 0: The maximum resident set size (KB) = 1119000 Test 152 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.392791 - 0: The maximum resident set size (KB) = 1074992 + 0: The total amount of wall time = 93.448727 + 0: The maximum resident set size (KB) = 1069632 Test 153 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.161595 - 0: The maximum resident set size (KB) = 987196 + 0: The total amount of wall time = 145.762431 + 0: The maximum resident set size (KB) = 998848 Test 154 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.306105 - 0: The maximum resident set size (KB) = 1007456 + 0: The total amount of wall time = 148.370878 + 0: The maximum resident set size (KB) = 1003164 Test 155 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.336213 - 0: The maximum resident set size (KB) = 999972 + 0: The total amount of wall time = 148.923562 + 0: The maximum resident set size (KB) = 1005080 Test 156 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.648798 - 0: The maximum resident set size (KB) = 1123032 + 0: The total amount of wall time = 145.845042 + 0: The maximum resident set size (KB) = 1120752 Test 157 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.806165 - 0: The maximum resident set size (KB) = 1114080 + 0: The total amount of wall time = 149.417430 + 0: The maximum resident set size (KB) = 1104236 Test 158 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.155134 - 0: The maximum resident set size (KB) = 1005420 + 0: The total amount of wall time = 144.564361 + 0: The maximum resident set size (KB) = 990560 Test 159 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5315,14 +5315,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 437.828179 - 0: The maximum resident set size (KB) = 1033960 + 0: The total amount of wall time = 432.854119 + 0: The maximum resident set size (KB) = 1036484 Test 160 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5331,77 +5331,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 434.265450 - 0: The maximum resident set size (KB) = 1022060 + 0: The total amount of wall time = 430.443721 + 0: The maximum resident set size (KB) = 1022900 Test 161 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.191980 - 0: The maximum resident set size (KB) = 1084676 + 0: The total amount of wall time = 150.511555 + 0: The maximum resident set size (KB) = 1123320 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.111219 - 0: The maximum resident set size (KB) = 2371656 + 0: The total amount of wall time = 203.995349 + 0: The maximum resident set size (KB) = 2418140 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 204.769602 - 0: The maximum resident set size (KB) = 2464432 + 0: The total amount of wall time = 208.445206 + 0: The maximum resident set size (KB) = 2471552 Test 164 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 353.688437 - 0: The maximum resident set size (KB) = 1041380 + 0: The total amount of wall time = 352.868077 + 0: The maximum resident set size (KB) = 1053292 Test 165 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.620828 - 0: The maximum resident set size (KB) = 1121808 + 0: The total amount of wall time = 149.578315 + 0: The maximum resident set size (KB) = 1110700 Test 166 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.786033 - 0: The maximum resident set size (KB) = 254900 + 0: The total amount of wall time = 7.134113 + 0: The maximum resident set size (KB) = 257240 Test 167 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 16.985882 - 0: The maximum resident set size (KB) = 253260 + 0: The total amount of wall time = 11.070392 + 0: The maximum resident set size (KB) = 259556 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5518,14 +5518,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 209.501338 - 0: The maximum resident set size (KB) = 1628388 + 0: The total amount of wall time = 201.791964 + 0: The maximum resident set size (KB) = 1634064 Test 169 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5568,14 +5568,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.735030 - 0: The maximum resident set size (KB) = 1655768 + 0: The total amount of wall time = 92.760965 + 0: The maximum resident set size (KB) = 1657588 Test 170 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.482379 - 0: The maximum resident set size (KB) = 664424 + 0: The total amount of wall time = 89.582377 + 0: The maximum resident set size (KB) = 661804 Test 171 control_atmwav_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5670,14 +5670,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.557230 - 0: The maximum resident set size (KB) = 3006060 + 0: The total amount of wall time = 228.887067 + 0: The maximum resident set size (KB) = 3010276 Test 172 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.174306 - 0: The maximum resident set size (KB) = 3074648 + 0: The total amount of wall time = 282.366673 + 0: The maximum resident set size (KB) = 3078604 Test 173 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5772,14 +5772,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.829964 - 0: The maximum resident set size (KB) = 3089080 + 0: The total amount of wall time = 283.201943 + 0: The maximum resident set size (KB) = 3089704 Test 174 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_atmaq_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5795,14 +5795,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 634.192141 - 0: The maximum resident set size (KB) = 5377808 + 0: The total amount of wall time = 640.032559 + 0: The maximum resident set size (KB) = 5564832 Test 175 regional_atmaq_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1213.479163 - 0: The maximum resident set size (KB) = 4960600 + 0: The total amount of wall time = 1233.160865 + 0: The maximum resident set size (KB) = 4959508 Test 176 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1891/stmp/zshrader/FV3_RT/rt_385440/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,12 +5839,12 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 569.364806 - 0: The maximum resident set size (KB) = 5566376 + 0: The total amount of wall time = 565.243412 + 0: The maximum resident set size (KB) = 5605424 Test 177 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 12 20:24:25 CDT 2023 -Elapsed time: 01h:25m:08s. Have a nice day! +Fri Sep 15 20:43:22 CDT 2023 +Elapsed time: 01h:29m:20s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 6ada3c526a..43b9d347a8 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,50 +1,49 @@ -Wed Sep 13 15:13:37 UTC 2023 +Fri Sep 15 16:07:40 UTC 2023 Start Regression test -Testing UFSWM Hash: cd0aed4ebf3a7a8299f1f9e40c9bed3f6280aff8 +Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 761 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 188 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 841 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 381 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1190 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 613 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 934 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 235 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 793 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1457 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1357 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 611 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1553 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1145 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1877 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 750 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 347 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1119 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atmaero_intel elapsed time 577 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 450 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 749 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 661 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 551 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1060 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 660 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 991 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 495 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 776 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 931 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1380 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 594 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1011 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1296 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 386 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 672 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1415 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -109,14 +108,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.581357 -The maximum resident set size (KB) = 2967208 +The total amount of wall time = 335.024522 +The maximum resident set size (KB) = 2967092 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -180,14 +179,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 252.863387 -The maximum resident set size (KB) = 1577740 +The total amount of wall time = 252.511375 +The maximum resident set size (KB) = 1570672 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -252,14 +251,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.319020 -The maximum resident set size (KB) = 2994592 +The total amount of wall time = 389.350167 +The maximum resident set size (KB) = 2992736 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -312,14 +311,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.811770 -The maximum resident set size (KB) = 3054596 +The total amount of wall time = 232.197674 +The maximum resident set size (KB) = 3054008 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -384,14 +383,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.920185 -The maximum resident set size (KB) = 3007728 +The total amount of wall time = 390.528422 +The maximum resident set size (KB) = 3006792 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -444,14 +443,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.602533 -The maximum resident set size (KB) = 2892884 +The total amount of wall time = 236.656288 +The maximum resident set size (KB) = 2897296 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -504,14 +503,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 349.611789 -The maximum resident set size (KB) = 3298056 +The total amount of wall time = 347.858038 +The maximum resident set size (KB) = 3302940 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +563,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.730170 -The maximum resident set size (KB) = 2992580 +The total amount of wall time = 384.101717 +The maximum resident set size (KB) = 2993172 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -624,14 +623,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.532467 -The maximum resident set size (KB) = 2926140 +The total amount of wall time = 326.400221 +The maximum resident set size (KB) = 2937768 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +695,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.785576 -The maximum resident set size (KB) = 2996176 +The total amount of wall time = 389.171196 +The maximum resident set size (KB) = 2995208 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -751,14 +750,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 783.554544 -The maximum resident set size (KB) = 3952892 +The total amount of wall time = 794.351007 +The maximum resident set size (KB) = 3953636 Test 011 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -806,14 +805,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 600.632546 -The maximum resident set size (KB) = 4242020 +The total amount of wall time = 715.823564 +The maximum resident set size (KB) = 4248080 Test 012 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -877,14 +876,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.391701 -The maximum resident set size (KB) = 1578468 +The total amount of wall time = 285.427291 +The maximum resident set size (KB) = 1583720 Test 013 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -946,14 +945,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.149767 -The maximum resident set size (KB) = 1633324 +The total amount of wall time = 300.508083 +The maximum resident set size (KB) = 1625272 Test 014 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1014,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.517055 -The maximum resident set size (KB) = 1631852 +The total amount of wall time = 301.436998 +The maximum resident set size (KB) = 1626872 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1072,14 +1071,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 438.962296 -The maximum resident set size (KB) = 2647076 +The total amount of wall time = 442.918712 +The maximum resident set size (KB) = 2642720 Test 016 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1144,14 +1143,274 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.659978 -The maximum resident set size (KB) = 2994032 +The total amount of wall time = 383.226176 +The maximum resident set size (KB) = 2994820 Test 017 cpld_control_p8_faster_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_pdlib_p8_intel +Checking test 018 cpld_control_pdlib_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 1165.378774 +The maximum resident set size (KB) = 1593188 + +Test 018 cpld_control_pdlib_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_pdlib_p8_intel +Checking test 019 cpld_restart_pdlib_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 583.377831 +The maximum resident set size (KB) = 874892 + +Test 019 cpld_restart_pdlib_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_mpi_pdlib_p8_intel +Checking test 020 cpld_mpi_pdlib_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 1072.994661 +The maximum resident set size (KB) = 1584588 + +Test 020 cpld_mpi_pdlib_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_debug_pdlib_p8_intel +Checking test 021 cpld_debug_pdlib_p8_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +The total amount of wall time = 1418.233179 +The maximum resident set size (KB) = 1626932 + +Test 021 cpld_debug_pdlib_p8_intel PASS + + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1162,14 +1421,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 216.705422 -The maximum resident set size (KB) = 564108 +The total amount of wall time = 214.558928 +The maximum resident set size (KB) = 565584 Test 022 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1196,14 +1455,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.809344 -The maximum resident set size (KB) = 513488 +The total amount of wall time = 136.832964 +The maximum resident set size (KB) = 514600 Test 023 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1218,14 +1477,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.638314 -The maximum resident set size (KB) = 517040 +The total amount of wall time = 140.011454 +The maximum resident set size (KB) = 521552 Test 024 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1236,14 +1495,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.321012 -The maximum resident set size (KB) = 512252 +The total amount of wall time = 136.989264 +The maximum resident set size (KB) = 511772 Test 025 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1513,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.524174 -The maximum resident set size (KB) = 513000 +The total amount of wall time = 136.358863 +The maximum resident set size (KB) = 515248 Test 026 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1300,14 +1559,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 325.421243 -The maximum resident set size (KB) = 670176 +The total amount of wall time = 326.898725 +The maximum resident set size (KB) = 670072 Test 027 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1318,14 +1577,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.094893 -The maximum resident set size (KB) = 614884 +The total amount of wall time = 530.578067 +The maximum resident set size (KB) = 611732 Test 028 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1336,14 +1595,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.570397 -The maximum resident set size (KB) = 1071024 +The total amount of wall time = 570.370619 +The maximum resident set size (KB) = 1063212 Test 029 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1386,14 +1645,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 500.284978 -The maximum resident set size (KB) = 1169372 +The total amount of wall time = 500.275534 +The maximum resident set size (KB) = 1166220 Test 030 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1404,28 +1663,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.668814 -The maximum resident set size (KB) = 517836 +The total amount of wall time = 91.813270 +The maximum resident set size (KB) = 518840 Test 031 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.009825 -The maximum resident set size (KB) = 347884 +The total amount of wall time = 51.097545 +The maximum resident set size (KB) = 348400 Test 032 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1436,14 +1695,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.184331 -The maximum resident set size (KB) = 517604 +The total amount of wall time = 85.251900 +The maximum resident set size (KB) = 514852 Test 033 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1458,14 +1717,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.330870 -The maximum resident set size (KB) = 512596 +The total amount of wall time = 138.385153 +The maximum resident set size (KB) = 513540 Test 034 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1480,14 +1739,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.804650 -The maximum resident set size (KB) = 515660 +The total amount of wall time = 135.506467 +The maximum resident set size (KB) = 515200 Test 035 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1793,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 183.445003 -The maximum resident set size (KB) = 1488440 +The total amount of wall time = 182.547730 +The maximum resident set size (KB) = 1487648 Test 036 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1580,14 +1839,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 112.506698 -The maximum resident set size (KB) = 699572 +The total amount of wall time = 103.200288 +The maximum resident set size (KB) = 701604 Test 037 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1634,14 +1893,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 182.232716 -The maximum resident set size (KB) = 1501928 +The total amount of wall time = 180.445529 +The maximum resident set size (KB) = 1508496 Test 038 control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1680,14 +1939,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 103.431633 -The maximum resident set size (KB) = 667436 +The total amount of wall time = 104.263597 +The maximum resident set size (KB) = 665732 Test 039 control_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1730,14 +1989,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 186.569576 -The maximum resident set size (KB) = 1491268 +The total amount of wall time = 186.183191 +The maximum resident set size (KB) = 1486412 Test 040 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1780,14 +2039,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 159.363733 -The maximum resident set size (KB) = 1573112 +The total amount of wall time = 158.102650 +The maximum resident set size (KB) = 1568276 Test 041 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1806,14 +2065,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 318.021645 -The maximum resident set size (KB) = 1495596 +The total amount of wall time = 318.581629 +The maximum resident set size (KB) = 1492760 Test 042 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +2119,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 238.210541 -The maximum resident set size (KB) = 1542448 +The total amount of wall time = 236.275814 +The maximum resident set size (KB) = 1546692 Test 043 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +2173,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 185.593069 -The maximum resident set size (KB) = 1501616 +The total amount of wall time = 182.978418 +The maximum resident set size (KB) = 1492020 Test 044 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +2227,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 208.247935 -The maximum resident set size (KB) = 1491568 +The total amount of wall time = 204.799606 +The maximum resident set size (KB) = 1495180 Test 045 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1986,28 +2245,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.008182 -The maximum resident set size (KB) = 868036 +The total amount of wall time = 286.170619 +The maximum resident set size (KB) = 871868 Test 046 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.355511 -The maximum resident set size (KB) = 862484 +The total amount of wall time = 161.654229 +The maximum resident set size (KB) = 865724 Test 047 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2018,28 +2277,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.808180 -The maximum resident set size (KB) = 871544 +The total amount of wall time = 286.812088 +The maximum resident set size (KB) = 868784 Test 048 regional_control_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.684715 -The maximum resident set size (KB) = 862612 +The total amount of wall time = 158.633974 +The maximum resident set size (KB) = 862360 Test 049 regional_restart_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2309,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.701858 -The maximum resident set size (KB) = 866092 +The total amount of wall time = 305.014801 +The maximum resident set size (KB) = 867152 Test 050 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2327,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.275375 -The maximum resident set size (KB) = 907212 +The total amount of wall time = 172.201766 +The maximum resident set size (KB) = 913180 Test 051 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2083,28 +2342,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 284.983632 -The maximum resident set size (KB) = 1141896 +The total amount of wall time = 283.777998 +The maximum resident set size (KB) = 1144220 Test 052 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.624125 -The maximum resident set size (KB) = 863484 +The total amount of wall time = 282.093025 +The maximum resident set size (KB) = 862984 Test 053 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2115,14 +2374,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.336066 -The maximum resident set size (KB) = 869472 +The total amount of wall time = 286.514272 +The maximum resident set size (KB) = 867088 Test 054 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2133,14 +2392,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.769050 -The maximum resident set size (KB) = 620032 +The total amount of wall time = 375.600136 +The maximum resident set size (KB) = 620996 Test 055 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2187,14 +2446,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.713458 -The maximum resident set size (KB) = 898120 +The total amount of wall time = 406.991816 +The maximum resident set size (KB) = 895752 Test 056 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2205,14 +2464,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.787804 -The maximum resident set size (KB) = 997248 +The total amount of wall time = 246.956240 +The maximum resident set size (KB) = 1002028 Test 057 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2259,14 +2518,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 418.405951 -The maximum resident set size (KB) = 890788 +The total amount of wall time = 419.702171 +The maximum resident set size (KB) = 891136 Test 058 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2572,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 367.249938 -The maximum resident set size (KB) = 979512 +The total amount of wall time = 369.931578 +The maximum resident set size (KB) = 972488 Test 059 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2359,14 +2618,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 207.725508 -The maximum resident set size (KB) = 809188 +The total amount of wall time = 209.977330 +The maximum resident set size (KB) = 806984 Test 060 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2413,14 +2672,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.108586 -The maximum resident set size (KB) = 893616 +The total amount of wall time = 407.988710 +The maximum resident set size (KB) = 899780 Test 061 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2726,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 423.603804 -The maximum resident set size (KB) = 891344 +The total amount of wall time = 421.641299 +The maximum resident set size (KB) = 894160 Test 062 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2513,14 +2772,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 301.325810 -The maximum resident set size (KB) = 813468 +The total amount of wall time = 302.461922 +The maximum resident set size (KB) = 815612 Test 063 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2567,14 +2826,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 398.437944 -The maximum resident set size (KB) = 891484 +The total amount of wall time = 399.339742 +The maximum resident set size (KB) = 888876 Test 064 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2589,14 +2848,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.232830 -The maximum resident set size (KB) = 577064 +The total amount of wall time = 472.045530 +The maximum resident set size (KB) = 579736 Test 065 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2611,14 +2870,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 451.904882 -The maximum resident set size (KB) = 570376 +The total amount of wall time = 453.870187 +The maximum resident set size (KB) = 567492 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2665,14 +2924,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 406.952890 -The maximum resident set size (KB) = 895208 +The total amount of wall time = 407.389850 +The maximum resident set size (KB) = 891640 Test 067 hrrr_gf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2719,14 +2978,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.579982 -The maximum resident set size (KB) = 894408 +The total amount of wall time = 408.482453 +The maximum resident set size (KB) = 895708 Test 068 hrrr_c3_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2737,14 +2996,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.061733 -The maximum resident set size (KB) = 584000 +The total amount of wall time = 337.657298 +The maximum resident set size (KB) = 580684 Test 069 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2755,14 +3014,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.628858 -The maximum resident set size (KB) = 579484 +The total amount of wall time = 344.169259 +The maximum resident set size (KB) = 578776 Test 070 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2773,26 +3032,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.001350 -The maximum resident set size (KB) = 549996 +The total amount of wall time = 186.738397 +The maximum resident set size (KB) = 553056 Test 071 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.517081 -The maximum resident set size (KB) = 330796 +The total amount of wall time = 118.345594 +The maximum resident set size (KB) = 329492 Test 072 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2839,14 +3098,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 176.869037 -The maximum resident set size (KB) = 1492888 +The total amount of wall time = 182.812762 +The maximum resident set size (KB) = 1494628 Test 073 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2857,14 +3116,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.966198 -The maximum resident set size (KB) = 868008 +The total amount of wall time = 280.384632 +The maximum resident set size (KB) = 870268 Test 074 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2891,348 +3150,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.061331 -The maximum resident set size (KB) = 676824 +The total amount of wall time = 160.368911 +The maximum resident set size (KB) = 672688 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.407626 -The maximum resident set size (KB) = 674932 +The total amount of wall time = 160.869798 +The maximum resident set size (KB) = 672248 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.999826 -The maximum resident set size (KB) = 685968 +The total amount of wall time = 179.924742 +The maximum resident set size (KB) = 683240 Test 077 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.557924 -The maximum resident set size (KB) = 679476 +The total amount of wall time = 160.596233 +The maximum resident set size (KB) = 684632 Test 078 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.411654 -The maximum resident set size (KB) = 717064 +The total amount of wall time = 260.560875 +The maximum resident set size (KB) = 712584 Test 079 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.017667 -The maximum resident set size (KB) = 715180 +The total amount of wall time = 257.005080 +The maximum resident set size (KB) = 716284 Test 080 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.638782 -The maximum resident set size (KB) = 694480 +The total amount of wall time = 162.408879 +The maximum resident set size (KB) = 689840 Test 081 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.046232 -The maximum resident set size (KB) = 734220 +The total amount of wall time = 165.488322 +The maximum resident set size (KB) = 733756 Test 082 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.708033 -The maximum resident set size (KB) = 1504060 +The total amount of wall time = 192.233673 +The maximum resident set size (KB) = 1505480 Test 083 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.095865 -The maximum resident set size (KB) = 885656 +The total amount of wall time = 1041.996135 +The maximum resident set size (KB) = 884724 Test 084 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.077276 -The maximum resident set size (KB) = 1054248 +The total amount of wall time = 297.878520 +The maximum resident set size (KB) = 1054764 Test 085 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.184839 -The maximum resident set size (KB) = 1051792 +The total amount of wall time = 290.201147 +The maximum resident set size (KB) = 1048468 Test 086 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.072999 -The maximum resident set size (KB) = 1052516 +The total amount of wall time = 298.085551 +The maximum resident set size (KB) = 1051420 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.487972 -The maximum resident set size (KB) = 1136256 +The total amount of wall time = 309.274466 +The maximum resident set size (KB) = 1136400 Test 088 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.281721 -The maximum resident set size (KB) = 1056016 +The total amount of wall time = 303.262474 +The maximum resident set size (KB) = 1056008 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.299047 -The maximum resident set size (KB) = 1055416 +The total amount of wall time = 303.702970 +The maximum resident set size (KB) = 1055804 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.855211 -The maximum resident set size (KB) = 1055720 +The total amount of wall time = 301.350178 +The maximum resident set size (KB) = 1056760 Test 091 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.807197 -The maximum resident set size (KB) = 1056320 +The total amount of wall time = 298.856824 +The maximum resident set size (KB) = 1055712 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.192637 -The maximum resident set size (KB) = 1054964 +The total amount of wall time = 291.459613 +The maximum resident set size (KB) = 1053820 Test 093 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.914541 -The maximum resident set size (KB) = 1055244 +The total amount of wall time = 297.360864 +The maximum resident set size (KB) = 1060368 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.498214 -The maximum resident set size (KB) = 1054768 +The total amount of wall time = 492.340757 +The maximum resident set size (KB) = 1054168 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.842322 -The maximum resident set size (KB) = 1052664 +The total amount of wall time = 297.613588 +The maximum resident set size (KB) = 1049316 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.995011 -The maximum resident set size (KB) = 1062844 +The total amount of wall time = 355.139723 +The maximum resident set size (KB) = 1056120 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.633565 -The maximum resident set size (KB) = 1055228 +The total amount of wall time = 298.523373 +The maximum resident set size (KB) = 1051576 Test 098 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.550840 -The maximum resident set size (KB) = 359444 +The total amount of wall time = 298.115409 +The maximum resident set size (KB) = 360596 Test 099 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3243,14 +3502,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.472065 -The maximum resident set size (KB) = 897880 +The total amount of wall time = 233.466429 +The maximum resident set size (KB) = 893776 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3297,14 +3556,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 338.377087 -The maximum resident set size (KB) = 780884 +The total amount of wall time = 343.523602 +The maximum resident set size (KB) = 779828 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3351,14 +3610,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 178.302257 -The maximum resident set size (KB) = 774312 +The total amount of wall time = 181.025965 +The maximum resident set size (KB) = 777560 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3405,14 +3664,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 177.867863 -The maximum resident set size (KB) = 785256 +The total amount of wall time = 183.515191 +The maximum resident set size (KB) = 783452 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3459,14 +3718,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 306.217761 -The maximum resident set size (KB) = 836888 +The total amount of wall time = 312.288060 +The maximum resident set size (KB) = 840296 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3513,14 +3772,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 160.422145 -The maximum resident set size (KB) = 823968 +The total amount of wall time = 163.610970 +The maximum resident set size (KB) = 820572 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3567,14 +3826,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 187.229479 -The maximum resident set size (KB) = 778116 +The total amount of wall time = 191.728589 +The maximum resident set size (KB) = 778200 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3613,42 +3872,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 249.618870 -The maximum resident set size (KB) = 704472 +The total amount of wall time = 256.099870 +The maximum resident set size (KB) = 705704 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.942802 -The maximum resident set size (KB) = 663316 +The total amount of wall time = 104.767197 +The maximum resident set size (KB) = 663256 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.220038 -The maximum resident set size (KB) = 629700 +The total amount of wall time = 101.448857 +The maximum resident set size (KB) = 625268 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3664,40 +3923,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 132.377971 -The maximum resident set size (KB) = 1054560 +The total amount of wall time = 139.175968 +The maximum resident set size (KB) = 1054264 Test 110 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 69.739866 -The maximum resident set size (KB) = 1060448 +The total amount of wall time = 74.420048 +The maximum resident set size (KB) = 1061008 Test 111 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.759212 -The maximum resident set size (KB) = 952588 +The total amount of wall time = 100.052632 +The maximum resident set size (KB) = 952564 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,123 +4003,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 230.597460 -The maximum resident set size (KB) = 806376 +The total amount of wall time = 250.753358 +The maximum resident set size (KB) = 805536 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.777766 -The maximum resident set size (KB) = 938380 +The total amount of wall time = 301.646740 +The maximum resident set size (KB) = 938852 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.207787 -The maximum resident set size (KB) = 938240 +The total amount of wall time = 291.520497 +The maximum resident set size (KB) = 936212 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 897.842403 -The maximum resident set size (KB) = 1089192 +The total amount of wall time = 902.766349 +The maximum resident set size (KB) = 1089828 Test 116 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 521.590594 -The maximum resident set size (KB) = 1095368 +The total amount of wall time = 532.236596 +The maximum resident set size (KB) = 1092216 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 899.727301 -The maximum resident set size (KB) = 1157604 +The total amount of wall time = 909.080176 +The maximum resident set size (KB) = 1160296 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.372312 -The maximum resident set size (KB) = 961132 +The total amount of wall time = 301.601628 +The maximum resident set size (KB) = 954884 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 257.274796 -The maximum resident set size (KB) = 1115464 +The total amount of wall time = 268.033351 +The maximum resident set size (KB) = 1120700 Test 120 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 300.746918 -The maximum resident set size (KB) = 1506264 +The total amount of wall time = 327.725979 +The maximum resident set size (KB) = 1474228 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3869,14 +4128,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 389.582357 -The maximum resident set size (KB) = 1101720 +The total amount of wall time = 399.274943 +The maximum resident set size (KB) = 1100980 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3885,14 +4144,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.525355 -The maximum resident set size (KB) = 1191916 +The total amount of wall time = 717.269643 +The maximum resident set size (KB) = 1195080 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3903,14 +4162,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 894.767559 -The maximum resident set size (KB) = 1162584 +The total amount of wall time = 909.200649 +The maximum resident set size (KB) = 1164392 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_1nest_atm_intel Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3932,14 +4191,14 @@ Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 311.104284 -The maximum resident set size (KB) = 533888 +The total amount of wall time = 326.765489 +The maximum resident set size (KB) = 533812 Test 125 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_1nest_atm_qr_intel Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3961,14 +4220,14 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 338.088390 -The maximum resident set size (KB) = 383992 +The total amount of wall time = 366.047474 +The maximum resident set size (KB) = 383160 Test 126 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3977,14 +4236,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 379.228777 -The maximum resident set size (KB) = 542972 +The total amount of wall time = 397.866959 +The maximum resident set size (KB) = 543680 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4031,14 +4290,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 163.302185 -The maximum resident set size (KB) = 304592 +The total amount of wall time = 174.025703 +The maximum resident set size (KB) = 305580 Test 128 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_1nest_atm_qr_intel Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,14 +4344,14 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 171.567181 -The maximum resident set size (KB) = 293024 +The total amount of wall time = 204.312208 +The maximum resident set size (KB) = 288728 Test 129 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_multiple_4nests_atm_intel Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4174,14 +4433,14 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 469.447981 -The maximum resident set size (KB) = 374576 +The total amount of wall time = 491.660286 +The maximum resident set size (KB) = 375904 Test 130 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_multiple_4nests_atm_qr_intel Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4263,14 +4522,14 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 533.827581 -The maximum resident set size (KB) = 429844 +The total amount of wall time = 575.857641 +The maximum resident set size (KB) = 385244 Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_specified_moving_1nest_atm_intel Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,14 +4538,14 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 210.253862 -The maximum resident set size (KB) = 546396 +The total amount of wall time = 232.864248 +The maximum resident set size (KB) = 539164 Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_intel Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4308,14 +4567,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 197.907201 -The maximum resident set size (KB) = 550664 +The total amount of wall time = 215.516606 +The maximum resident set size (KB) = 559472 Test 133 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4596,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 229.329438 -The maximum resident set size (KB) = 417692 +The total amount of wall time = 262.742433 +The maximum resident set size (KB) = 422308 Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,60 +4612,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.838385 -The maximum resident set size (KB) = 612164 +The total amount of wall time = 262.898404 +The maximum resident set size (KB) = 614208 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.327602 -The maximum resident set size (KB) = 323616 +The total amount of wall time = 95.853160 +The maximum resident set size (KB) = 320380 Test 136 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 804.918759 -The maximum resident set size (KB) = 600160 +The total amount of wall time = 811.635964 +The maximum resident set size (KB) = 625824 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 502.032404 -The maximum resident set size (KB) = 661124 - -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_atmlnd_sbs_intel Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4491,14 +4732,14 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 239.865528 -The maximum resident set size (KB) = 1546632 +The total amount of wall time = 296.700118 +The maximum resident set size (KB) = 1546780 Test 139 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_intel Checking test 140 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4783,14 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 255.098419 -The maximum resident set size (KB) = 2820540 +The total amount of wall time = 259.095920 +The maximum resident set size (KB) = 2823848 Test 140 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_rad_intel Checking test 141 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4834,14 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 288.218029 -The maximum resident set size (KB) = 2887856 +The total amount of wall time = 295.942314 +The maximum resident set size (KB) = 2887720 Test 141 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_rad_micro_intel Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,14 +4885,14 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 295.485976 -The maximum resident set size (KB) = 2899164 +The total amount of wall time = 336.657269 +The maximum resident set size (KB) = 2896256 Test 142 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_atmaq_intel Checking test 143 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4667,14 +4908,14 @@ Checking test 143 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 682.326174 -The maximum resident set size (KB) = 5322240 +The total amount of wall time = 716.018091 +The maximum resident set size (KB) = 5323744 Test 143 regional_atmaq_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_38351/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_atmaq_debug_intel Checking test 144 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4688,298 +4929,54 @@ Checking test 144 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 1356.658913 -The maximum resident set size (KB) = 4830196 +The total amount of wall time = 1433.864038 +The maximum resident set size (KB) = 4832500 Test 144 regional_atmaq_debug_intel PASS FAILED TESTS: -cpld_control_pdlib_p8_intel 018 failed in run_test -cpld_debug_pdlib_p8_intel 021 failed in run_test +compile_hafsw_faster_intel failed in run_compile REGRESSION TEST FAILED -Wed Sep 13 16:16:04 UTC 2023 -Elapsed time: 01h:02m:28s. Have a nice day! -Thu Sep 14 12:37:11 UTC 2023 +Fri Sep 15 17:28:25 UTC 2023 +Elapsed time: 01h:20m:46s. Have a nice day! +Fri Sep 15 19:32:22 UTC 2023 Start Regression test -Testing UFSWM Hash: cd0aed4ebf3a7a8299f1f9e40c9bed3f6280aff8 +Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile s2sw_pdlib_debug_intel elapsed time 213 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile hafsw_faster_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191324/cpld_control_pdlib_p8_intel -Checking test 001 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1170.004535 -The maximum resident set size (KB) = 1596528 - -Test 001 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191324/cpld_restart_pdlib_p8_intel -Checking test 002 cpld_restart_pdlib_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 577.256134 -The maximum resident set size (KB) = 879672 - -Test 002 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191324/cpld_mpi_pdlib_p8_intel -Checking test 003 cpld_mpi_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1063.225517 -The maximum resident set size (KB) = 1579276 - -Test 003 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_191324/cpld_debug_pdlib_p8_intel -Checking test 004 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48753/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 1417.047527 -The maximum resident set size (KB) = 1629328 +The total amount of wall time = 503.392445 +The maximum resident set size (KB) = 659272 -Test 004 cpld_debug_pdlib_p8_intel PASS +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 14 13:34:41 UTC 2023 -Elapsed time: 00h:57m:31s. Have a nice day! +Fri Sep 15 19:53:05 UTC 2023 +Elapsed time: 00h:20m:43s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 17e9dc57f8..49ff6fece0 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -21,46 +21,46 @@ ### Intel Tests ### ### S2S tests ### -COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8_mixedmode | | baseline | -RUN | cpld_control_gfsv17 | | baseline | +COMPILE | s2swa_32bit | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_p8_mixedmode | - noaacloud | baseline | +RUN | cpld_control_gfsv17 | | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_p8 | | baseline | -RUN | cpld_restart_p8 | | | cpld_control_p8 -RUN | cpld_control_qr_p8 | | | -RUN | cpld_restart_qr_p8 | | | cpld_control_qr_p8 -RUN | cpld_2threads_p8 | | | -RUN | cpld_decomp_p8 | | | -RUN | cpld_mpi_p8 | | | -#RUN | cpld_multigrid_p8 | | | -RUN | cpld_control_ciceC_p8 | - gaea | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 jet acorn gaea s4 | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn gaea s4 | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet cheyenne acorn | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet cheyenne acorn | | cpld_bmark_p8 - -COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_noaero_p8 | | baseline | -RUN | cpld_control_nowave_noaero_p8 | | baseline | - -COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | -RUN | cpld_debug_p8 | - wcoss2 acorn | baseline | - -COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 acorn | fv3 | -RUN | cpld_debug_noaero_p8 | - wcoss2 acorn | baseline | +RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 +RUN | cpld_control_qr_p8 | - noaacloud | | +RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 +RUN | cpld_2threads_p8 | - noaacloud | | +RUN | cpld_decomp_p8 | - noaacloud | | +RUN | cpld_mpi_p8 | - noaacloud | | +#RUN | cpld_multigrid_p8 | - noaacloud | | +RUN | cpld_control_ciceC_p8 | - gaea noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn gaea s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn gaea s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet cheyenne acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet cheyenne acorn noaacloud | | cpld_bmark_p8 + +COMPILE | s2sw | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_noaero_p8 | | baseline | +RUN | cpld_control_nowave_noaero_p8 | - noaacloud | baseline | + +COMPILE | s2swa_debug | intel | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_p8 | - wcoss2 acorn noaacloud | baseline | + +COMPILE | s2sw_debug | intel | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2 noaacloud acorn | fv3 | +RUN | cpld_debug_noaero_p8 | - wcoss2 acorn noaacloud | baseline | # Waves and aerosol off for computing fluxes in mediator -COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | -RUN | cpld_control_noaero_p8_agrid | | baseline | +COMPILE | s2s_aoflux | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | +RUN | cpld_control_noaero_p8_agrid | | baseline | -COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c48 | | baseline | -#RUN | cpld_warmstart_c48 | | baseline | -#RUN | cpld_restart_c48 | | | cpld_warmstart_c48 +COMPILE | s2s | intel | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c48 | | baseline | +#RUN | cpld_warmstart_c48 | - noaacloud | baseline | +#RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - cheyenne | fv3 | -RUN | cpld_control_p8_faster | - cheyenne | baseline | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - cheyenne noaacloud | fv3 | +RUN | cpld_control_p8_faster | - cheyenne noaacloud | baseline | # Unstructured WW3 mesh COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera orion cheyenne wcoss2 | fv3 | @@ -75,34 +75,34 @@ RUN | cpld_debug_pdlib_p8 | + hera orion cheyenne 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 -D32BIT=ON | | fv3 | RUN | control_flake | | baseline | RUN | control_CubedSphereGrid | | baseline | -RUN | control_CubedSphereGrid_parallel | | baseline | +RUN | control_CubedSphereGrid_parallel | - noaacloud | baseline | RUN | control_latlon | | baseline | RUN | control_wrtGauss_netcdf_parallel | | baseline | RUN | control_c48 | | baseline | -RUN | control_c192 | | baseline | +RUN | control_c192 | - noaacloud | baseline | RUN | control_c384 | | baseline | -RUN | control_c384gdas | | baseline | +RUN | control_c384gdas | - noaacloud | baseline | RUN | control_stochy | | baseline | -RUN | control_stochy_restart | | | control_stochy +RUN | control_stochy_restart | - noaacloud | | control_stochy RUN | control_lndp | | baseline | RUN | control_iovr4 | | baseline | RUN | control_iovr5 | | baseline | -RUN | control_p8 | | baseline | -RUN | control_restart_p8 | | | control_p8 -RUN | control_qr_p8 | | | -RUN | control_restart_qr_p8 | | | control_qr_p8 -RUN | control_decomp_p8 | | | -RUN | control_2threads_p8 | | | +RUN | control_p8 | - noaacloud | baseline | +RUN | control_restart_p8 | - noaacloud | | control_p8 +RUN | control_qr_p8 | - noaacloud | | +RUN | control_restart_qr_p8 | - noaacloud | | control_qr_p8 +RUN | control_decomp_p8 | - noaacloud | | +RUN | control_2threads_p8 | - noaacloud | | RUN | control_p8_lndp | | baseline | -RUN | control_p8_rrtmgp | | baseline | -RUN | control_p8_mynn | | baseline | -RUN | merra2_thompson | | baseline | +RUN | control_p8_rrtmgp | - noaacloud | baseline | +RUN | control_p8_mynn | - noaacloud | baseline | +RUN | merra2_thompson | - noaacloud | baseline | RUN | regional_control | | baseline | -RUN | regional_restart | | | regional_control -RUN | regional_control_qr | | | -RUN | regional_restart_qr | | | regional_control_qr -RUN | regional_decomp | | | -RUN | regional_2threads | | | +RUN | regional_restart | - noaacloud | | regional_control +RUN | regional_control_qr | - noaacloud | | +RUN | regional_restart_qr | - noaacloud | | regional_control_qr +RUN | regional_decomp | - noaacloud | | +RUN | regional_2threads | - noaacloud | | RUN | regional_noquilt | - jet s4 | baseline | RUN | regional_netcdf_parallel | - acorn | baseline | RUN | regional_2dwrtdecomp | | | @@ -116,194 +116,194 @@ RUN | regional_ifi_2threads | + acorn COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | | fv3 | RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | -RUN | rap_decomp | | | -RUN | rap_2threads | | | -RUN | rap_restart | | | rap_control -RUN | rap_sfcdiff | | baseline | -RUN | rap_sfcdiff_decomp | | | -RUN | rap_sfcdiff_restart | | | rap_sfcdiff -RUN | hrrr_control | - wcoss2 | baseline | -RUN | hrrr_control_qr | - wcoss2 | | -RUN | hrrr_control_decomp | - wcoss2 | | -RUN | hrrr_control_2threads | - wcoss2 | | -RUN | hrrr_control_restart | - wcoss2 | | hrrr_control -RUN | hrrr_control_restart_qr | - wcoss2 | | hrrr_control_qr +RUN | rap_decomp | - noaacloud | | +RUN | rap_2threads | - noaacloud | | +RUN | rap_restart | - noaacloud | | rap_control +RUN | rap_sfcdiff | - noaacloud | baseline | +RUN | rap_sfcdiff_decomp | - noaacloud | | +RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff +RUN | hrrr_control | - wcoss2 noaacloud | baseline | +RUN | hrrr_control_qr | - wcoss2 noaacloud | | +RUN | hrrr_control_decomp | - wcoss2 noaacloud | | +RUN | hrrr_control_2threads | - wcoss2 noaacloud | | +RUN | hrrr_control_restart | - wcoss2 noaacloud | | hrrr_control +RUN | hrrr_control_restart_qr | - wcoss2 noaacloud | | hrrr_control_qr RUN | rrfs_v1beta | | baseline | RUN | rrfs_v1nssl | | baseline | RUN | rrfs_v1nssl_nohailnoccn | | baseline | -RUN | hrrr_gf | | baseline | -RUN | hrrr_c3 | | baseline | +RUN | hrrr_gf | - noaacloud | baseline | +RUN | hrrr_c3 | - noaacloud | baseline | -COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | | fv3 | -RUN | control_csawmg | - gaea.intel | baseline | -RUN | control_csawmgt | | baseline | -RUN | control_ras | | baseline | +COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | +RUN | control_csawmg | - gaea.intel noaacloud | baseline | +RUN | control_csawmgt | - noaacloud | baseline | +RUN | control_ras | - noaacloud | baseline | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | -RUN | control_wam | | baseline | +COMPILE | wam | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | - noaacloud | fv3 | +RUN | control_wam | - noaacloud | baseline | -COMPILE | atm_faster_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | -RUN | control_p8_faster | | baseline | -RUN | regional_control_faster | | baseline | +COMPILE | atm_faster_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | control_p8_faster | - noaacloud | baseline | +RUN | regional_control_faster | | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | -RUN | control_CubedSphereGrid_debug | | baseline | -RUN | control_wrtGauss_netcdf_parallel_debug | | baseline | -RUN | control_stochy_debug | | baseline | -RUN | control_lndp_debug | | baseline | -RUN | control_csawmg_debug | | baseline | -RUN | control_csawmgt_debug | | baseline | -RUN | control_ras_debug | | baseline | -RUN | control_diag_debug | | baseline | -RUN | control_debug_p8 | | baseline | -RUN | regional_debug | | baseline | -RUN | rap_control_debug | | baseline | -RUN | hrrr_control_debug | | baseline | -RUN | rap_unified_drag_suite_debug | | | -RUN | rap_diag_debug | | baseline | -RUN | rap_cires_ugwp_debug | | baseline | -RUN | rap_unified_ugwp_debug | | | -RUN | rap_lndp_debug | | baseline | -RUN | rap_progcld_thompson_debug | | baseline | -RUN | rap_noah_debug | | baseline | -RUN | rap_sfcdiff_debug | | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | | baseline | -RUN | rrfs_v1beta_debug | | baseline | -RUN | rap_clm_lake_debug | | baseline | -RUN | rap_flake_debug | | baseline | - -COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | -RUN | control_wam_debug | | baseline | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | - noaacloud | fv3 | +RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | +RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | +RUN | control_stochy_debug | - noaacloud | baseline | +RUN | control_lndp_debug | - noaacloud | baseline | +RUN | control_csawmg_debug | - noaacloud | baseline | +RUN | control_csawmgt_debug | - noaacloud | baseline | +RUN | control_ras_debug | - noaacloud | baseline | +RUN | control_diag_debug | - noaacloud | baseline | +RUN | control_debug_p8 | - noaacloud | baseline | +RUN | regional_debug | - noaacloud | baseline | +RUN | rap_control_debug | - noaacloud | baseline | +RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | rap_unified_drag_suite_debug | - noaacloud | | +RUN | rap_diag_debug | - noaacloud | baseline | +RUN | rap_cires_ugwp_debug | - noaacloud | baseline | +RUN | rap_unified_ugwp_debug | - noaacloud | | +RUN | rap_lndp_debug | - noaacloud | baseline | +RUN | rap_progcld_thompson_debug | - noaacloud | baseline | +RUN | rap_noah_debug | - noaacloud | baseline | +RUN | rap_sfcdiff_debug | - noaacloud | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | - noaacloud | baseline | +RUN | rrfs_v1beta_debug | - noaacloud | baseline | +RUN | rap_clm_lake_debug | - noaacloud | baseline | +RUN | rap_flake_debug | - noaacloud | baseline | + +COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | control_wam_debug | - noaacloud | baseline | ### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | -RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | | baseline | -RUN | rap_control_dyn32_phy32 | | baseline | -RUN | hrrr_control_dyn32_phy32 | | baseline | -RUN | hrrr_control_qr_dyn32_phy32 | | | -RUN | rap_2threads_dyn32_phy32 | | | -RUN | hrrr_control_2threads_dyn32_phy32 | | | -RUN | hrrr_control_decomp_dyn32_phy32 | | | -RUN | rap_restart_dyn32_phy32 | | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | | | hrrr_control_dyn32_phy32 -RUN | hrrr_control_restart_qr_dyn32_phy32 | | | hrrr_control_qr_dyn32_phy32 - -COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | -RUN | conus13km_control | | baseline | -RUN | conus13km_2threads | | | conus13km_control -RUN | conus13km_restart_mismatch | | baseline | conus13km_control +COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | - noaacloud | baseline | +RUN | rap_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_qr_dyn32_phy32 | - noaacloud | | +RUN | rap_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_2threads_dyn32_phy32 | - noaacloud | | +RUN | hrrr_control_decomp_dyn32_phy32 | - noaacloud | | +RUN | rap_restart_dyn32_phy32 | - noaacloud | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | - noaacloud | | hrrr_control_dyn32_phy32 +RUN | hrrr_control_restart_qr_dyn32_phy32 | - noaacloud | | hrrr_control_qr_dyn32_phy32 + +COMPILE | rrfs_dyn32_phy32_faster | intel | -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | conus13km_control | - noaacloud | baseline | +RUN | conus13km_2threads | - noaacloud | | conus13km_control +RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | | | conus13km_control -# RUN | conus13km_decomp | | | conus13km_control -# RUN | conus13km_control_qr | | baseline | -# RUN | conus13km_restart_qr_mismatch | | baseline | conus13km_control +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control +# RUN | conus13km_control_qr | - noaacloud | baseline | +# RUN | conus13km_restart_qr_mismatch | - noaacloud | baseline | conus13km_control -COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | -RUN | rap_control_dyn64_phy32 | | baseline | +COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | -COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | -RUN | rap_control_debug_dyn32_phy32 | | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | | baseline | -RUN | conus13km_debug | | baseline | -RUN | conus13km_debug_2threads | | | -RUN | conus13km_radar_tten_debug | | baseline | +COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | # Expected to fail: -# RUN | conus13km_debug_decomp | | | +# RUN | conus13km_debug_decomp | | | -COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | -RUN | rap_control_dyn64_phy32_debug | | baseline | +COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | +RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | ### HAFS tests ### -COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON | | fv3 | -RUN | hafs_regional_atm | | baseline | -RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | -RUN | hafs_regional_atm_ocn | | baseline | -RUN | hafs_regional_atm_wav | | baseline | -RUN | hafs_regional_atm_ocn_wav | | baseline | -RUN | hafs_regional_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_telescopic_2nests_atm | - jet s4 | baseline | -RUN | hafs_global_1nest_atm | - jet s4 | baseline | -RUN | hafs_global_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_global_multiple_4nests_atm | - jet s4 | baseline | -RUN | hafs_global_multiple_4nests_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_storm_following_1nest_atm | - jet s4 | baseline | -RUN | hafs_regional_storm_following_1nest_atm_qr | - jet s4 cheyenne | | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 | baseline | -RUN | hafs_global_storm_following_1nest_atm | - jet s4 | baseline | - -COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 | baseline | - -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON | -jet s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 | baseline | - -COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2 | fv3 | -RUN | hafs_regional_docn | - wcoss2 | baseline | -RUN | hafs_regional_docn_oisst | - wcoss2 | baseline | -RUN | hafs_regional_datm_cdeps | - wcoss2 -jet s4 | baseline | +COMPILE | hafsw | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm | | baseline | +RUN | hafs_regional_atm_thompson_gfdlsf | | baseline | +RUN | hafs_regional_atm_ocn | | baseline | +RUN | hafs_regional_atm_wav | | baseline | +RUN | hafs_regional_atm_ocn_wav | - noaacloud | baseline | +RUN | hafs_regional_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_1nest_atm_qr | - jet s4 cheyenne noaacloud | | +RUN | hafs_regional_telescopic_2nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_1nest_atm_qr | - jet s4 cheyenne noaacloud | | +RUN | hafs_global_multiple_4nests_atm | - jet s4 noaacloud | baseline | +RUN | hafs_global_multiple_4nests_atm_qr | - jet s4 cheyenne noaacloud | | +RUN | hafs_regional_specified_moving_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_qr | - jet s4 cheyenne noaacloud | | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud | baseline | +RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | + +COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | + +COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | + +COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2 noaacloud | fv3 | +RUN | hafs_regional_docn | - wcoss2 noaacloud | baseline | +RUN | hafs_regional_docn_oisst | - wcoss2 noaacloud | baseline | +RUN | hafs_regional_datm_cdeps | - wcoss2 -jet s4 noaacloud | baseline | ### CDEPS Data Atmosphere tests ### -COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_restart_cfsr | - wcoss2 | | datm_cdeps_control_cfsr -RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_ciceC_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_bulk_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_bulk_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_mx025_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_mx025_gefs | - wcoss2 | baseline | -RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 | | -RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 | baseline | -RUN | datm_cdeps_gfs | - wcoss2 | baseline | - -COMPILE | datm_cdeps_debug | intel | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn | fv3 | -RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn | baseline | - -COMPILE | datm_cdeps_faster | intel | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | -RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | +COMPILE | datm_cdeps | intel | -DAPP=NG-GODAS | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr | - wcoss2 | baseline | +RUN | datm_cdeps_restart_cfsr | - wcoss2 noaacloud | | datm_cdeps_control_cfsr +RUN | datm_cdeps_control_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_iau_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_stochy_gefs | - wcoss2 | baseline | +RUN | datm_cdeps_ciceC_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_bulk_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_mx025_gefs | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_multiple_files_cfsr | - wcoss2 noaacloud | | +RUN | datm_cdeps_3072x1536_cfsr | - wcoss2 noaacloud | baseline | +RUN | datm_cdeps_gfs | - wcoss2 noaacloud | baseline | + +COMPILE | datm_cdeps_debug | intel | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2 acorn noaacloud | fv3 | +RUN | datm_cdeps_debug_cfsr | - wcoss2 acorn noaacloud | baseline | + +COMPILE | datm_cdeps_faster | intel | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2 | fv3 | +RUN | datm_cdeps_control_cfsr_faster | - wcoss2 | baseline | ### CDEPS Data Atmosphere tests with LND ### -COMPILE | datm_cdeps_land | intel | -DAPP=LND | - wcoss2 | fv3 | -RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | -RUN | datm_cdeps_lnd_gswp3_rst | - wcoss2 | | datm_cdeps_lnd_gswp3 +COMPILE | datm_cdeps_land | intel | -DAPP=LND | - wcoss2 | fv3 | +RUN | datm_cdeps_lnd_gswp3 | - wcoss2 | baseline | +RUN | datm_cdeps_lnd_gswp3_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_gswp3 ### ATM-LND tests, -D32BIT=ON has issue and NoahMP reuires r8 libraries ### -COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km | | fv3 | -RUN | control_p8_atmlnd_sbs | | baseline | +COMPILE | atml | intel | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km | - noaacloud | fv3 | +RUN | control_p8_atmlnd_sbs | - noaacloud | baseline | ### ATM-WAV tests ### #mediator (cmeps) -COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | -RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | +COMPILE | atmw | intel | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2 | fv3 | +RUN | atmwav_control_noaero_p8 | - wcoss2 | baseline | #connectors (wmesmf) -COMPILE | atmwm | intel | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2 | fv3 | -RUN | control_atmwav | - wcoss2 | baseline | -#RUN | control_c384gdas_wav | - jet cheyenne wcoss2 | baseline | +COMPILE | atmwm | intel | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2 | fv3 | +RUN | control_atmwav | - wcoss2 | baseline | +#RUN | control_c384gdas_wav | - jet cheyenne wcoss2 noaacloud | baseline | ### ATM-GOCART tests ### -COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | -RUN | atmaero_control_p8 | | baseline | -RUN | atmaero_control_p8_rad | | baseline | -RUN | atmaero_control_p8_rad_micro | | baseline | +COMPILE | atmaero | intel | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - noaacloud | fv3 | +RUN | atmaero_control_p8 | - noaacloud | baseline | +RUN | atmaero_control_p8_rad | - noaacloud | baseline | +RUN | atmaero_control_p8_rad_micro | - noaacloud | baseline | ### ATM-CMAQ tests ### -COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | -RUN | regional_atmaq | - jet s4 | baseline | +COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | +RUN | regional_atmaq | - jet s4 | baseline | -COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet gaea cheyenne s4 | fv3 | -RUN | regional_atmaq_debug | - jet gaea cheyenne s4 | baseline | +COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud gaea cheyenne s4 | fv3 | +RUN | regional_atmaq_debug | - jet gaea cheyenne s4 noaacloud | baseline | -COMPILE | atmaq_faster | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | - jet wcoss2 acorn s4 | fv3 | -RUN | regional_atmaq_faster | - jet wcoss2 acorn s4 | baseline | +COMPILE | atmaq_faster | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | - jet wcoss2 acorn s4 | fv3 | +RUN | regional_atmaq_faster | - jet wcoss2 acorn s4 | baseline | ### GNU TESTS ### diff --git a/tests/rt.sh b/tests/rt.sh index 640860e71a..2249764680 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -315,7 +315,7 @@ elif [[ $MACHINE_ID = gaea ]]; then ECFLOW_START=/lustre/f2/pdata/esrl/gsd/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT + DISKNM=/lustre/f2/pdata/ncep/role.epic/RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c4 @@ -373,7 +373,7 @@ elif [[ $MACHINE_ID = orion ]]; then COMPILE_QUEUE=batch PARTITION=orion dprefix=/work/noaa/stmp/${USER} - DISKNM=/work/noaa/nems/emc.nemspara/RT + DISKNM=/work/noaa/epic/UFS-WM_RT STMP=$dprefix/stmp PTMP=$dprefix/stmp @@ -563,8 +563,11 @@ echo "Start Regression test" >> ${REGRESSIONTEST_LOG} echo >> ${REGRESSIONTEST_LOG} echo "Testing UFSWM Hash:" `git rev-parse HEAD` >> ${REGRESSIONTEST_LOG} echo "Testing With Submodule Hashes:" >> ${REGRESSIONTEST_LOG} +cd .. git submodule status >> ${REGRESSIONTEST_LOG} +cd tests + source default_vars.sh JOB_NR=0 From e053209711324eaf3be7271af4d3db6211bb9e67 Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Wed, 20 Sep 2023 09:47:55 -0700 Subject: [PATCH 02/10] Add Hercules support (#1733) * Update several RT files to add Hercules support. Add hercules intel lua file. * Update rt.sh * Use dusan's formatting in ufs_common. Change hdf5 version. * Update rt_utils.sh * Remove git diff syntax from rt_utils.sh * Add regnerated cdeps_share files; add DCPRGNU and DCPRINTEL flags to CMEPS and CDEPS CMakeliststo allow for GNU builds; remove the Intel compiler directive in the current cdeps_share files. * turn off control_wam_debug for intel as well move CPRGNU CPP flag to apply to all gnu versions (fixes hera failures) * Add Hercules as a machine in pull_request_template.md --- .github/pull_request_template.md | 1 + CDEPS-interface/CMakeLists.txt | 5 + .../ufs/cdeps_share/shr_assert_mod.F90 | 385 +- .../ufs/cdeps_share/shr_frz_mod.F90 | 10 +- .../ufs/cdeps_share/shr_infnan_mod.F90 | 209 +- CMEPS-interface/CMakeLists.txt | 5 + cmake/configure_hercules.gnu.cmake | 1 + cmake/configure_hercules.intel.cmake | 1 + modulefiles/ufs_hercules.gnu.lua | 54 + modulefiles/ufs_hercules.intel.lua | 54 + tests/auto-jenkins/jobs/bl.py | 5 + tests/auto-jenkins/jobs/rt.py | 2 + tests/auto-jenkins/rt_auto_jenkins.py | 7 + tests/auto-jenkins/start_rt_auto_jenkins.sh | 3 + tests/default_vars.sh | 14 + tests/detect_machine.sh | 5 + tests/fv3_conf/compile_slurm.IN_hercules | 20 + tests/fv3_conf/fv3_slurm.IN_hercules | 49 + ...sts_cpld_control_nowave_noaero_p8_hera.log | 215 + tests/logs/RegressionTests_acorn.log | 1129 ++- tests/logs/RegressionTests_gaea.log | 1082 +-- tests/logs/RegressionTests_hera.log | 1526 ++-- tests/logs/RegressionTests_hercules.log | 7569 +++++++++++++++++ tests/logs/RegressionTests_jet.log | 966 +-- tests/logs/RegressionTests_orion.log | 1150 +-- tests/logs/RegressionTests_wcoss2.log | 979 ++- tests/module-setup.sh | 7 + tests/opnReqTest | 26 + tests/rt.conf | 166 +- tests/rt.sh | 30 + tests/rt_utils.sh | 5 +- tests/run_test.sh | 2 +- 32 files changed, 11856 insertions(+), 3826 deletions(-) create mode 100644 cmake/configure_hercules.gnu.cmake create mode 100644 cmake/configure_hercules.intel.cmake create mode 100755 modulefiles/ufs_hercules.gnu.lua create mode 100755 modulefiles/ufs_hercules.intel.lua create mode 100755 tests/fv3_conf/compile_slurm.IN_hercules create mode 100755 tests/fv3_conf/fv3_slurm.IN_hercules create mode 100644 tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log create mode 100644 tests/logs/RegressionTests_hercules.log diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6e1bc20289..47821bc23e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -76,6 +76,7 @@ PLEASE DO NOT MODIFY THE TEMPLATE BEYOND FILLING OUT THE PROPER SECTIONS --> - RDHPCS - [ ] Hera - [ ] Orion + - [ ] Hercules - [ ] Jet - [ ] Gaea - [ ] Cheyenne diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index be502ec8d6..2b41ea473d 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -1,6 +1,8 @@ # CDEPS compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + #Set CPP defintions for the ufs/cdeps_share target library + list(APPEND CDEPS_SHARE_DEFS "CPRGNU") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") endif() @@ -11,6 +13,8 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") + #Set CPP defintions for the ufs/cdeps_share target library + list(APPEND CDEPS_SHARE_DEFS "CPRINTEL") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() @@ -23,6 +27,7 @@ add_library(share OBJECT ${cdeps_share_files} ${ufs_cdeps_share_files}) set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) target_include_directories(share PRIVATE $) +target_compile_definitions(share PRIVATE ${CDEPS_SHARE_DEFS}) target_link_libraries(share PRIVATE esmf) # CDEPS/streams diff --git a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 index 487ea6470f..6e7c897a1f 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 @@ -11,7 +11,8 @@ module shr_assert_mod r4 => shr_kind_r4, & r8 => shr_kind_r8, & i4 => shr_kind_i4, & - i8 => shr_kind_i8 + i8 => shr_kind_i8, & + CL => shr_kind_CL use shr_sys_mod, only: & shr_sys_abort @@ -35,7 +36,7 @@ module shr_assert_mod ! Assert that a numerical value satisfies certain constraints. public :: shr_assert_in_domain -# 33 "shr_assert_mod.F90.in" +# 34 "shr_assert_mod.F90.in" interface shr_assert_all module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -54,7 +55,7 @@ module shr_assert_mod module procedure shr_assert_all_7d end interface -# 39 "shr_assert_mod.F90.in" +# 40 "shr_assert_mod.F90.in" interface shr_assert_any module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -73,7 +74,7 @@ module shr_assert_mod module procedure shr_assert_any_7d end interface -# 45 "shr_assert_mod.F90.in" +# 46 "shr_assert_mod.F90.in" interface shr_assert_in_domain ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -175,7 +176,7 @@ module shr_assert_mod ! Private utilities. -# 53 "shr_assert_mod.F90.in" +# 54 "shr_assert_mod.F90.in" interface print_bad_loc ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -275,7 +276,7 @@ module shr_assert_mod module procedure print_bad_loc_7d_long end interface -# 59 "shr_assert_mod.F90.in" +# 60 "shr_assert_mod.F90.in" interface find_first_loc ! DIMS 0,1,2,3,4,5,6,7 module procedure find_first_loc_0d @@ -295,7 +296,7 @@ module shr_assert_mod module procedure find_first_loc_7d end interface -# 64 "shr_assert_mod.F90.in" +# 65 "shr_assert_mod.F90.in" interface within_tolerance ! TYPE double,real,int,long module procedure within_tolerance_double @@ -307,10 +308,10 @@ module shr_assert_mod module procedure within_tolerance_long end interface -# 69 "shr_assert_mod.F90.in" +# 70 "shr_assert_mod.F90.in" contains -# 71 "shr_assert_mod.F90.in" +# 72 "shr_assert_mod.F90.in" subroutine shr_assert(var, msg, file, line) ! Logical being asserted @@ -322,8 +323,8 @@ subroutine shr_assert(var, msg, file, line) character(len=*), intent(in), optional :: file integer , intent(in), optional :: line - character(len=:), allocatable :: full_msg - + character(len=CL) :: full_msg + full_msg = '' if (.not. var) then full_msg = 'ERROR' @@ -339,11 +340,11 @@ subroutine shr_assert(var, msg, file, line) call shr_sys_abort(full_msg) end if -# 99 "shr_assert_mod.F90.in" +# 100 "shr_assert_mod.F90.in" end subroutine shr_assert ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_1d(var, msg, file, line) ! Logical being asserted @@ -357,10 +358,10 @@ subroutine shr_assert_all_1d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_1d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_2d(var, msg, file, line) ! Logical being asserted @@ -374,10 +375,10 @@ subroutine shr_assert_all_2d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_2d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_3d(var, msg, file, line) ! Logical being asserted @@ -391,10 +392,10 @@ subroutine shr_assert_all_3d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_3d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_4d(var, msg, file, line) ! Logical being asserted @@ -408,10 +409,10 @@ subroutine shr_assert_all_4d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_4d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_5d(var, msg, file, line) ! Logical being asserted @@ -425,10 +426,10 @@ subroutine shr_assert_all_5d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_5d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_6d(var, msg, file, line) ! Logical being asserted @@ -442,10 +443,10 @@ subroutine shr_assert_all_6d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_6d ! DIMS 1,2,3,4,5,6,7 -# 102 "shr_assert_mod.F90.in" +# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_7d(var, msg, file, line) ! Logical being asserted @@ -459,11 +460,11 @@ subroutine shr_assert_all_7d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 115 "shr_assert_mod.F90.in" +# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_7d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_1d(var, msg, file, line) ! Logical being asserted @@ -477,10 +478,10 @@ subroutine shr_assert_any_1d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_1d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_2d(var, msg, file, line) ! Logical being asserted @@ -494,10 +495,10 @@ subroutine shr_assert_any_2d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_2d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_3d(var, msg, file, line) ! Logical being asserted @@ -511,10 +512,10 @@ subroutine shr_assert_any_3d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_3d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_4d(var, msg, file, line) ! Logical being asserted @@ -528,10 +529,10 @@ subroutine shr_assert_any_4d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_4d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_5d(var, msg, file, line) ! Logical being asserted @@ -545,10 +546,10 @@ subroutine shr_assert_any_5d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_5d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_6d(var, msg, file, line) ! Logical being asserted @@ -562,10 +563,10 @@ subroutine shr_assert_any_6d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_6d ! DIMS 1,2,3,4,5,6,7 -# 118 "shr_assert_mod.F90.in" +# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_7d(var, msg, file, line) ! Logical being asserted @@ -579,7 +580,7 @@ subroutine shr_assert_any_7d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 131 "shr_assert_mod.F90.in" +# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_7d !-------------------------------------------------------------------------- @@ -587,7 +588,7 @@ end subroutine shr_assert_any_7d ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -783,11 +784,11 @@ subroutine shr_assert_in_domain_0d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -983,11 +984,11 @@ subroutine shr_assert_in_domain_1d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1183,11 +1184,11 @@ subroutine shr_assert_in_domain_2d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1383,11 +1384,11 @@ subroutine shr_assert_in_domain_3d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1583,11 +1584,11 @@ subroutine shr_assert_in_domain_4d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1783,11 +1784,11 @@ subroutine shr_assert_in_domain_5d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1983,11 +1984,11 @@ subroutine shr_assert_in_domain_6d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2183,11 +2184,11 @@ subroutine shr_assert_in_domain_7d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2383,11 +2384,11 @@ subroutine shr_assert_in_domain_0d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2583,11 +2584,11 @@ subroutine shr_assert_in_domain_1d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2783,11 +2784,11 @@ subroutine shr_assert_in_domain_2d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2983,11 +2984,11 @@ subroutine shr_assert_in_domain_3d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3183,11 +3184,11 @@ subroutine shr_assert_in_domain_4d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3383,11 +3384,11 @@ subroutine shr_assert_in_domain_5d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3583,11 +3584,11 @@ subroutine shr_assert_in_domain_6d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3783,11 +3784,11 @@ subroutine shr_assert_in_domain_7d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3983,11 +3984,11 @@ subroutine shr_assert_in_domain_0d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4183,11 +4184,11 @@ subroutine shr_assert_in_domain_1d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4383,11 +4384,11 @@ subroutine shr_assert_in_domain_2d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4583,11 +4584,11 @@ subroutine shr_assert_in_domain_3d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4783,11 +4784,11 @@ subroutine shr_assert_in_domain_4d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4983,11 +4984,11 @@ subroutine shr_assert_in_domain_5d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5183,11 +5184,11 @@ subroutine shr_assert_in_domain_6d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5383,11 +5384,11 @@ subroutine shr_assert_in_domain_7d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5583,11 +5584,11 @@ subroutine shr_assert_in_domain_0d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5783,11 +5784,11 @@ subroutine shr_assert_in_domain_1d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5983,11 +5984,11 @@ subroutine shr_assert_in_domain_2d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6183,11 +6184,11 @@ subroutine shr_assert_in_domain_3d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6383,11 +6384,11 @@ subroutine shr_assert_in_domain_4d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6583,11 +6584,11 @@ subroutine shr_assert_in_domain_5d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6783,11 +6784,11 @@ subroutine shr_assert_in_domain_6d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 138 "shr_assert_mod.F90.in" +# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6983,7 +6984,7 @@ subroutine shr_assert_in_domain_7d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 333 "shr_assert_mod.F90.in" +# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_long !-------------------------------------------------------------------------- @@ -6991,7 +6992,7 @@ end subroutine shr_assert_in_domain_7d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7022,11 +7023,11 @@ subroutine print_bad_loc_0d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7057,11 +7058,11 @@ subroutine print_bad_loc_1d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7093,11 +7094,11 @@ subroutine print_bad_loc_2d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7130,11 +7131,11 @@ subroutine print_bad_loc_3d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7168,11 +7169,11 @@ subroutine print_bad_loc_4d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7207,11 +7208,11 @@ subroutine print_bad_loc_5d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7247,11 +7248,11 @@ subroutine print_bad_loc_6d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7288,11 +7289,11 @@ subroutine print_bad_loc_7d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7323,11 +7324,11 @@ subroutine print_bad_loc_0d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7358,11 +7359,11 @@ subroutine print_bad_loc_1d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7394,11 +7395,11 @@ subroutine print_bad_loc_2d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7431,11 +7432,11 @@ subroutine print_bad_loc_3d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7469,11 +7470,11 @@ subroutine print_bad_loc_4d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7508,11 +7509,11 @@ subroutine print_bad_loc_5d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7548,11 +7549,11 @@ subroutine print_bad_loc_6d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7589,11 +7590,11 @@ subroutine print_bad_loc_7d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7624,11 +7625,11 @@ subroutine print_bad_loc_0d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7659,11 +7660,11 @@ subroutine print_bad_loc_1d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7695,11 +7696,11 @@ subroutine print_bad_loc_2d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7732,11 +7733,11 @@ subroutine print_bad_loc_3d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7770,11 +7771,11 @@ subroutine print_bad_loc_4d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7809,11 +7810,11 @@ subroutine print_bad_loc_5d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7849,11 +7850,11 @@ subroutine print_bad_loc_6d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7890,11 +7891,11 @@ subroutine print_bad_loc_7d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7925,11 +7926,11 @@ subroutine print_bad_loc_0d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7960,11 +7961,11 @@ subroutine print_bad_loc_1d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7996,11 +7997,11 @@ subroutine print_bad_loc_2d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8033,11 +8034,11 @@ subroutine print_bad_loc_3d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8071,11 +8072,11 @@ subroutine print_bad_loc_4d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8110,11 +8111,11 @@ subroutine print_bad_loc_5d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8150,11 +8151,11 @@ subroutine print_bad_loc_6d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 340 "shr_assert_mod.F90.in" +# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8191,14 +8192,14 @@ subroutine print_bad_loc_7d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 370 "shr_assert_mod.F90.in" +# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_long !-------------------------------------------------------------------------- !-------------------------------------------------------------------------- ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_0d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8227,10 +8228,10 @@ pure function find_first_loc_0d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_0d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_1d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8259,10 +8260,10 @@ pure function find_first_loc_1d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_1d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_2d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8292,10 +8293,10 @@ pure function find_first_loc_2d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_2d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_3d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8326,10 +8327,10 @@ pure function find_first_loc_3d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_3d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_4d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8361,10 +8362,10 @@ pure function find_first_loc_4d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_4d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_5d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8397,10 +8398,10 @@ pure function find_first_loc_5d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_5d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_6d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8434,10 +8435,10 @@ pure function find_first_loc_6d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_6d ! DIMS 0,1,2,3,4,5,6,7 -# 376 "shr_assert_mod.F90.in" +# 377 "shr_assert_mod.F90.in" pure function find_first_loc_7d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8472,11 +8473,11 @@ pure function find_first_loc_7d(mask) result (loc_vec) #endif -# 404 "shr_assert_mod.F90.in" +# 405 "shr_assert_mod.F90.in" end function find_first_loc_7d ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" +# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_double(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8504,10 +8505,10 @@ elemental function within_tolerance_double(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" +# 435 "shr_assert_mod.F90.in" end function within_tolerance_double ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" +# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_real(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8535,10 +8536,10 @@ elemental function within_tolerance_real(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" +# 435 "shr_assert_mod.F90.in" end function within_tolerance_real ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" +# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_int(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8566,10 +8567,10 @@ elemental function within_tolerance_int(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" +# 435 "shr_assert_mod.F90.in" end function within_tolerance_int ! TYPE double,real,int,long -# 407 "shr_assert_mod.F90.in" +# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_long(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8597,7 +8598,7 @@ elemental function within_tolerance_long(expected, actual, tolerance) & end if end if -# 434 "shr_assert_mod.F90.in" +# 435 "shr_assert_mod.F90.in" end function within_tolerance_long end module shr_assert_mod diff --git a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 index d925c9301b..94c95bbf13 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 @@ -41,13 +41,13 @@ module shr_frz_mod !=============================================================================== # 37 "shr_frz_mod.F90.in" - subroutine shr_frz_freezetemp_init(tfreeze_option, mastertask) + subroutine shr_frz_freezetemp_init(tfreeze_option, maintask) implicit none character(len=*),parameter :: subname = "(shr_frz_freezetemp_init) " character(CS),intent(in) :: tfreeze_option ! option for computing freezing point - logical, intent(in) :: mastertask ! for io + logical, intent(in) :: maintask ! for io ! minus1p8 is constant -1.8C ! linear_salt is linear equation ! mushy for CICE mushy-layer nonlinear equation @@ -56,13 +56,13 @@ subroutine shr_frz_freezetemp_init(tfreeze_option, mastertask) ! Check tfreeze_option !--------------------------------------------------------------- if (trim(tfreeze_option) == 'minus1p8') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is minus1p8' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is minus1p8' tfrz_option = TFREEZE_OPTION_MINUS1P8 elseif (trim(tfreeze_option) == 'linear_salt') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is linear_salt' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is linear_salt' tfrz_option = TFREEZE_OPTION_LINEAR_SALT elseif (trim(tfreeze_option) == 'mushy') then - if (mastertask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is mushy' + if (maintask .and. shr_log_level>0) write(s_logunit,*) ' tfreeze_option is mushy' tfrz_option = TFREEZE_OPTION_MUSHY else call shr_sys_abort(subname//' ERROR: not a valid tfreeze_option '//trim(tfreeze_option)) diff --git a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 index 19f1ac824d..0ceecfaaf2 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 @@ -3,7 +3,6 @@ ! DO NOT EDIT THIS FILE, it was generated using genf90.pl ! Any changes you make to this file may be lost !=================================================== -#define CPRINTEL 1 ! Flag representing compiler support of Fortran 2003's ! ieee_arithmetic intrinsic module. #if defined CPRIBM || defined CPRPGI || defined CPRINTEL || defined CPRCRAY || defined CPRNAG @@ -72,7 +71,7 @@ module shr_infnan_mod ! Locally defined isnan. #ifndef HAVE_IEEE_ARITHMETIC -# 70 "shr_infnan_mod.F90.in" +# 69 "shr_infnan_mod.F90.in" interface shr_infnan_isnan ! TYPE double,real module procedure shr_infnan_isnan_double @@ -81,7 +80,7 @@ module shr_infnan_mod end interface #endif -# 76 "shr_infnan_mod.F90.in" +# 75 "shr_infnan_mod.F90.in" interface shr_infnan_isinf ! TYPE double,real module procedure shr_infnan_isinf_double @@ -89,7 +88,7 @@ module shr_infnan_mod module procedure shr_infnan_isinf_real end interface -# 81 "shr_infnan_mod.F90.in" +# 80 "shr_infnan_mod.F90.in" interface shr_infnan_isposinf ! TYPE double,real module procedure shr_infnan_isposinf_double @@ -97,7 +96,7 @@ module shr_infnan_mod module procedure shr_infnan_isposinf_real end interface -# 86 "shr_infnan_mod.F90.in" +# 85 "shr_infnan_mod.F90.in" interface shr_infnan_isneginf ! TYPE double,real module procedure shr_infnan_isneginf_double @@ -125,7 +124,7 @@ module shr_infnan_mod end type shr_infnan_inf_type ! Allow assigning reals to NaN or Inf. -# 111 "shr_infnan_mod.F90.in" +# 110 "shr_infnan_mod.F90.in" interface assignment(=) ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 @@ -226,13 +225,13 @@ module shr_infnan_mod end interface ! Conversion functions. -# 121 "shr_infnan_mod.F90.in" +# 120 "shr_infnan_mod.F90.in" interface shr_infnan_to_r8 module procedure nan_r8 module procedure inf_r8 end interface -# 126 "shr_infnan_mod.F90.in" +# 125 "shr_infnan_mod.F90.in" interface shr_infnan_to_r4 module procedure nan_r4 module procedure inf_r4 @@ -273,7 +272,7 @@ module shr_infnan_mod integer(i8), parameter :: dneginf_pat = ibset(dposinf_pat,bit_size(1_i8)-1) #endif -# 166 "shr_infnan_mod.F90.in" +# 165 "shr_infnan_mod.F90.in" contains !--------------------------------------------------------------------- @@ -283,24 +282,24 @@ module shr_infnan_mod !--------------------------------------------------------------------- ! TYPE double,real -# 175 "shr_infnan_mod.F90.in" +# 174 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_double(x) result(isinf) real(r8), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 181 "shr_infnan_mod.F90.in" +# 180 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_double ! TYPE double,real -# 175 "shr_infnan_mod.F90.in" +# 174 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_real(x) result(isinf) real(r4), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 181 "shr_infnan_mod.F90.in" +# 180 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_real #ifdef HAVE_IEEE_ARITHMETIC @@ -312,7 +311,7 @@ end function shr_infnan_isinf_real !--------------------------------------------------------------------- ! TYPE double,real -# 192 "shr_infnan_mod.F90.in" +# 191 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -323,10 +322,10 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 202 "shr_infnan_mod.F90.in" +# 201 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 192 "shr_infnan_mod.F90.in" +# 191 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -337,11 +336,11 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 202 "shr_infnan_mod.F90.in" +# 201 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 205 "shr_infnan_mod.F90.in" +# 204 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -352,10 +351,10 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 215 "shr_infnan_mod.F90.in" +# 214 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 205 "shr_infnan_mod.F90.in" +# 204 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -366,7 +365,7 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 215 "shr_infnan_mod.F90.in" +# 214 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real #else @@ -375,24 +374,24 @@ end function shr_infnan_isneginf_real #ifdef CPRGNU ! NaN testing on gfortran. ! TYPE double,real -# 223 "shr_infnan_mod.F90.in" +# 222 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_double(x) result(is_nan) real(r8), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 229 "shr_infnan_mod.F90.in" +# 228 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_double ! TYPE double,real -# 223 "shr_infnan_mod.F90.in" +# 222 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_real(x) result(is_nan) real(r4), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 229 "shr_infnan_mod.F90.in" +# 228 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_real ! End GNU section. #endif @@ -403,7 +402,7 @@ end function shr_infnan_isnan_real !--------------------------------------------------------------------- ! TYPE double,real -# 239 "shr_infnan_mod.F90.in" +# 238 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) real(r8), intent(in) :: x logical :: isposinf @@ -415,10 +414,10 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 250 "shr_infnan_mod.F90.in" +# 249 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 239 "shr_infnan_mod.F90.in" +# 238 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) real(r4), intent(in) :: x logical :: isposinf @@ -430,11 +429,11 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 250 "shr_infnan_mod.F90.in" +# 249 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 253 "shr_infnan_mod.F90.in" +# 252 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) real(r8), intent(in) :: x logical :: isneginf @@ -446,10 +445,10 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 264 "shr_infnan_mod.F90.in" +# 263 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 253 "shr_infnan_mod.F90.in" +# 252 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) real(r4), intent(in) :: x logical :: isneginf @@ -461,7 +460,7 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 264 "shr_infnan_mod.F90.in" +# 263 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real ! End ieee_arithmetic conditional. @@ -485,7 +484,7 @@ end function shr_infnan_isneginf_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -524,11 +523,11 @@ pure subroutine set_nan_0d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -567,11 +566,11 @@ pure subroutine set_nan_1d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -610,11 +609,11 @@ pure subroutine set_nan_2d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -653,11 +652,11 @@ pure subroutine set_nan_3d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -696,11 +695,11 @@ pure subroutine set_nan_4d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -739,11 +738,11 @@ pure subroutine set_nan_5d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -782,11 +781,11 @@ pure subroutine set_nan_6d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -825,11 +824,11 @@ pure subroutine set_nan_7d_double(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -868,11 +867,11 @@ pure subroutine set_nan_0d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -911,11 +910,11 @@ pure subroutine set_nan_1d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -954,11 +953,11 @@ pure subroutine set_nan_2d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -997,11 +996,11 @@ pure subroutine set_nan_3d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1040,11 +1039,11 @@ pure subroutine set_nan_4d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1083,11 +1082,11 @@ pure subroutine set_nan_5d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1126,11 +1125,11 @@ pure subroutine set_nan_6d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 287 "shr_infnan_mod.F90.in" +# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1169,12 +1168,12 @@ pure subroutine set_nan_7d_real(output, nan) output = tmp -# 325 "shr_infnan_mod.F90.in" +# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1213,11 +1212,11 @@ pure subroutine set_inf_0d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1256,11 +1255,11 @@ pure subroutine set_inf_1d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1299,11 +1298,11 @@ pure subroutine set_inf_2d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1342,11 +1341,11 @@ pure subroutine set_inf_3d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1385,11 +1384,11 @@ pure subroutine set_inf_4d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1428,11 +1427,11 @@ pure subroutine set_inf_5d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1471,11 +1470,11 @@ pure subroutine set_inf_6d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1514,11 +1513,11 @@ pure subroutine set_inf_7d_double(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1557,11 +1556,11 @@ pure subroutine set_inf_0d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1600,11 +1599,11 @@ pure subroutine set_inf_1d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1643,11 +1642,11 @@ pure subroutine set_inf_2d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1686,11 +1685,11 @@ pure subroutine set_inf_3d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1729,11 +1728,11 @@ pure subroutine set_inf_4d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1772,11 +1771,11 @@ pure subroutine set_inf_5d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1815,11 +1814,11 @@ pure subroutine set_inf_6d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 329 "shr_infnan_mod.F90.in" +# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1858,7 +1857,7 @@ pure subroutine set_inf_7d_real(output, inf) output = tmp -# 367 "shr_infnan_mod.F90.in" +# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_real !--------------------------------------------------------------------- @@ -1867,44 +1866,44 @@ end subroutine set_inf_7d_real ! Function methods to get reals from nan/inf types. !--------------------------------------------------------------------- -# 375 "shr_infnan_mod.F90.in" +# 374 "shr_infnan_mod.F90.in" pure function nan_r8(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r8) :: output output = nan -# 381 "shr_infnan_mod.F90.in" +# 380 "shr_infnan_mod.F90.in" end function nan_r8 -# 383 "shr_infnan_mod.F90.in" +# 382 "shr_infnan_mod.F90.in" pure function nan_r4(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r4) :: output output = nan -# 389 "shr_infnan_mod.F90.in" +# 388 "shr_infnan_mod.F90.in" end function nan_r4 -# 391 "shr_infnan_mod.F90.in" +# 390 "shr_infnan_mod.F90.in" pure function inf_r8(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r8) :: output output = inf -# 397 "shr_infnan_mod.F90.in" +# 396 "shr_infnan_mod.F90.in" end function inf_r8 -# 399 "shr_infnan_mod.F90.in" +# 398 "shr_infnan_mod.F90.in" pure function inf_r4(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r4) :: output output = inf -# 405 "shr_infnan_mod.F90.in" +# 404 "shr_infnan_mod.F90.in" end function inf_r4 end module shr_infnan_mod diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 268d0485ad..a5e63de262 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -4,6 +4,8 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + #Set CPP defintions for the ufs/cdeps_share source component of the cmeps target library + list(APPEND CDEPS_SHARE_DEFS "CPRGNU") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") endif() @@ -17,6 +19,8 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "") + #Set CPP defintions for the ufs/cdeps_share source component of the cmeps target library + list(APPEND CDEPS_SHARE_DEFS "CPRINTEL") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() @@ -174,6 +178,7 @@ add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files} ${SCHEMES} ${CAP set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(cmeps PUBLIC $ $) +target_compile_definitions(cmeps PRIVATE ${CDEPS_SHARE_DEFS}) target_link_libraries(cmeps PUBLIC fms esmf PIO::PIO_Fortran) diff --git a/cmake/configure_hercules.gnu.cmake b/cmake/configure_hercules.gnu.cmake new file mode 100644 index 0000000000..8f1ffe0d01 --- /dev/null +++ b/cmake/configure_hercules.gnu.cmake @@ -0,0 +1 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_hercules.intel.cmake b/cmake/configure_hercules.intel.cmake new file mode 100644 index 0000000000..8f1ffe0d01 --- /dev/null +++ b/cmake/configure_hercules.intel.cmake @@ -0,0 +1 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua new file mode 100755 index 0000000000..4a3f92b39b --- /dev/null +++ b/modulefiles/ufs_hercules.gnu.lua @@ -0,0 +1,54 @@ +help([[ +loads UFS Model prerequisites for Hercules/GNU +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-dev-20230825/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") + +stack_gnu_ver=os.getenv("stack_gnu_ver") or "11.3.1" +load(pathJoin("stack-gcc", stack_gnu_ver)) + +stack_openmpi_ver=os.getenv("stack_openmpi_ver") or "4.1.5" +load(pathJoin("stack-openmpi", stack_openmpi_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.9.14" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +local ufs_modules = { + {["jasper"] = "2.0.32"}, + {["zlib"] = "1.2.13"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf-c"] = "4.9.2"}, + {["netcdf-fortran"] = "4.6.0"}, + {["parallelio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.5.0"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["scotch"] = "7.0.4"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end + +setenv("CC", "mpicc") +setenv("CXX", "mpic++") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "hercules.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua new file mode 100755 index 0000000000..368d46cff7 --- /dev/null +++ b/modulefiles/ufs_hercules.intel.lua @@ -0,0 +1,54 @@ +help([[ +loads UFS Model prerequisites for Hercules/Intel +]]) + +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-dev-20230825/envs/ufs-pio-2.5.10/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.9.14" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +local ufs_modules = { + {["jasper"] = "2.0.32"}, + {["zlib"] = "1.2.13"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.14.0"}, + {["netcdf-c"] = "4.9.2"}, + {["netcdf-fortran"] = "4.6.0"}, + {["parallelio"] = "2.5.10"}, + {["esmf"] = "8.4.2"}, + {["fms"] = "2023.01"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "1.5.0"}, + {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["scotch"] = "7.0.4"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hercules.intel") + +whatis("Description: UFS build environment") diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index ca64b26892..f3337d0e8b 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -38,6 +38,11 @@ def set_directories(job_obj): blstore = '/work/noaa/epic/UFS-WM_RT/NEMSfv3gfs' rtbldir = '/work/noaa/stmp/role-epic-ps/stmp/role-epic-ps/FV3_RT/'\ f'REGRESSION_TEST' + elif job_obj.machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/tests/auto/pr' + blstore = '/work/noaa/epic/hercules/UFS-WM_RT' + rtbldir = '/work/noaa/stmp/role-epic/stmp/role-epic/FV3_RT/'\ + f'REGRESSION_TEST' elif job_obj.machine == 'cheyenne': workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' blstore = '/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs' diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 4780dfed9f..adc3ec6b58 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -31,6 +31,8 @@ def set_directories(job_obj): workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' + elif job_obj.machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/tests/auto/pr' elif job_obj.machine == 'cheyenne': workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' else: diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py index 38ef8b6372..9fc148ad3b 100755 --- a/tests/auto-jenkins/rt_auto_jenkins.py +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -81,6 +81,8 @@ def delete_pr_dirs(each_pr, machine): workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' + elif machine == 'hercules': + workdir = '/work/noaa/epic/role-epic/autort/pr' elif machine == 'cheyenne': workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' else: @@ -116,6 +118,8 @@ def delete_rt_dirs(in_dir, machine, workdir): rt_dir = '/lustre/f2/scratch/role.epic/FV3_RT' elif machine == 'orion': rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' + elif machine == 'hercules': + rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' elif machine == 'cheyenne': rt_dir = '/glade/scratch/epicufsrt/FV3_RT' else: @@ -294,6 +298,9 @@ def setup_env(): elif bool(re.match(re.compile('Orion-login.+'), hostname)): machine = 'orion' os.environ['ACCNR'] = 'epic-ps' + elif bool(re.match(re.compile('Hercules-login.+'), hostname)): + machine = 'hercules' + os.environ['ACCNR'] = 'epic' elif bool(re.match(re.compile('cheyenne.+'), hostname)): machine = 'cheyenne' os.environ['ACCNR'] = 'SCSG0002' diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh index 203b334767..dc6119b77b 100755 --- a/tests/auto-jenkins/start_rt_auto_jenkins.sh +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -10,6 +10,9 @@ elif [[ $HOSTNAME == hecflow* ]]; then elif [[ $HOSTNAME == Orion-login-* ]]; then export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == Hercules-login-* ]]; then + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages elif [[ $HOSTNAME == fe* ]]; then export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ae15f0dafe..bbb4770ec4 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -120,6 +120,20 @@ elif [[ $MACHINE_ID = orion ]]; then INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 WAV_tasks_atmw_gdas=248 +elif [[ $MACHINE_ID = hercules ]]; then + + TPN=80 + + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 + + elif [[ $MACHINE_ID = hera ]]; then TPN=40 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 5d3d360b4e..249ac536a8 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -75,6 +75,11 @@ case $(hostname -f) in Orion-login-3.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion3 Orion-login-4.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion4 + Hercules-login-1.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules1 + Hercules-login-2.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules2 + Hercules-login-3.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules3 + Hercules-login-4.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules4 + cheyenne1.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 cheyenne2.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne2 cheyenne3.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne3 diff --git a/tests/fv3_conf/compile_slurm.IN_hercules b/tests/fv3_conf/compile_slurm.IN_hercules new file mode 100755 index 0000000000..f0eeee484b --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_hercules @@ -0,0 +1,20 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=60 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules new file mode 100755 index 0000000000..f26497ed34 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -0,0 +1,49 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +### #SBATCH --ntasks=@[TASKS] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] +#SBATCH --job-name="@[JBNME]" +#SBATCH --exclusive + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=hercules +source ./module-setup.sh +module use $PWD/modulefiles +module load modules.fv3 +module list +set -x + +ulimit -s unlimited + +echo "Model started: " `date` + +#export MPI_TYPE_DEPTH=20 +export OMP_STACKSIZE=512M +export KMP_AFFINITY=scatter +export OMP_NUM_THREADS=@[THRD] +#export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +#export PSM_RANKS_PER_CONTEXT=4 +#export PSM_SHAREDCONTEXTS=1 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +if [[ @[RT_COMPILER] == intel ]]; then + srun --label -n @[TASKS] ./fv3.exe +elif [[ @[RT_COMPILER] == gnu ]]; then + mpirun -n @[TASKS] -N @[TPN] ./fv3.exe +fi + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log new file mode 100644 index 0000000000..22ca532296 --- /dev/null +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -0,0 +1,215 @@ +Tue Sep 19 22:01:49 UTC 2023 +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_13102/cpld_control_nowave_noaero_p8_gnu_dbg_base +Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... +Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 1354.435076 + 0: The maximum resident set size (KB) = 1413228 + +Test dbg_base cpld_control_nowave_noaero_p8_gnu 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_13102/cpld_control_nowave_noaero_p8_gnu_rst +Checking test rst cpld_control_nowave_noaero_p8_gnu results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 405.589353 + 0: The maximum resident set size (KB) = 1405108 + +Test rst cpld_control_nowave_noaero_p8_gnu 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_13102/cpld_control_nowave_noaero_p8_gnu_std_base +Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... +Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 403.967698 + 0: The maximum resident set size (KB) = 1401188 + +Test std_base cpld_control_nowave_noaero_p8_gnu PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Tue Sep 19 22:51:07 UTC 2023 +Elapsed time: 00h:49m:19s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 41d5deb21f..5c47b023aa 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ -Fri Sep 15 16:11:17 UTC 2023 +Wed Sep 20 12:17:21 UTC 2023 Start Regression test -Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e +Testing UFSWM Hash: 904f5513b638c99ce2dde2b882331c0aad689a99 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,40 +15,41 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 532 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 923 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1034 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 610 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 684 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1059 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 170 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 539 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_intel elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 1073 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 626 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 761 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 812 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 965 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1060 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 940 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 579 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 384 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 470 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1027 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1425 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 664 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 569 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 346 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 404 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 377 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 593 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 724 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 638 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 704 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 848 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1342 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1040 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1050 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 680 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 541 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +114,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 460.715791 -The maximum resident set size (KB) = 2965676 +The total amount of wall time = 321.783290 +The maximum resident set size (KB) = 2969036 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +185,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 268.664338 -The maximum resident set size (KB) = 1562408 +The total amount of wall time = 240.219444 +The maximum resident set size (KB) = 1569492 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -256,14 +257,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 482.271677 -The maximum resident set size (KB) = 2998344 +The total amount of wall time = 380.479503 +The maximum resident set size (KB) = 2995160 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -316,14 +317,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 340.521824 -The maximum resident set size (KB) = 3059188 +The total amount of wall time = 218.030206 +The maximum resident set size (KB) = 3056548 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -388,14 +389,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.083433 -The maximum resident set size (KB) = 3009132 +The total amount of wall time = 380.685094 +The maximum resident set size (KB) = 3008244 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -448,14 +449,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 263.378834 -The maximum resident set size (KB) = 2896844 +The total amount of wall time = 223.121792 +The maximum resident set size (KB) = 2894744 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -508,14 +509,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 485.172066 -The maximum resident set size (KB) = 3304028 +The total amount of wall time = 337.073410 +The maximum resident set size (KB) = 3300004 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -568,14 +569,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 556.556252 -The maximum resident set size (KB) = 2996504 +The total amount of wall time = 374.547051 +The maximum resident set size (KB) = 2991648 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -628,14 +629,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.303633 -The maximum resident set size (KB) = 2932312 +The total amount of wall time = 313.655416 +The maximum resident set size (KB) = 2929484 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -700,14 +701,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 424.027302 -The maximum resident set size (KB) = 2998904 +The total amount of wall time = 377.355738 +The maximum resident set size (KB) = 2998672 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -771,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 275.558709 -The maximum resident set size (KB) = 1584524 +The total amount of wall time = 271.727705 +The maximum resident set size (KB) = 1578988 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -840,14 +841,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.596498 -The maximum resident set size (KB) = 1643204 +The total amount of wall time = 287.886058 +The maximum resident set size (KB) = 1633628 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +910,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 348.096929 -The maximum resident set size (KB) = 1629280 +The total amount of wall time = 286.249732 +The maximum resident set size (KB) = 1629308 Test 013 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -966,14 +967,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 444.662479 -The maximum resident set size (KB) = 2647816 +The total amount of wall time = 425.596576 +The maximum resident set size (KB) = 2646496 Test 014 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1038,14 +1039,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 405.172772 -The maximum resident set size (KB) = 2997716 +The total amount of wall time = 367.976331 +The maximum resident set size (KB) = 2997220 Test 015 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1056,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 227.709223 -The maximum resident set size (KB) = 564720 +The total amount of wall time = 211.839492 +The maximum resident set size (KB) = 566016 Test 016 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1090,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 153.916531 -The maximum resident set size (KB) = 518416 +The total amount of wall time = 128.952537 +The maximum resident set size (KB) = 514592 Test 017 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1112,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.978505 -The maximum resident set size (KB) = 523216 +The total amount of wall time = 133.932307 +The maximum resident set size (KB) = 522296 Test 018 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1130,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 147.552980 -The maximum resident set size (KB) = 521052 +The total amount of wall time = 130.375894 +The maximum resident set size (KB) = 519528 Test 019 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1148,14 +1149,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.138661 -The maximum resident set size (KB) = 517788 +The total amount of wall time = 133.755313 +The maximum resident set size (KB) = 518356 Test 020 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1194,14 +1195,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 339.886992 -The maximum resident set size (KB) = 674472 +The total amount of wall time = 328.834576 +The maximum resident set size (KB) = 673624 Test 021 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1212,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 579.597354 -The maximum resident set size (KB) = 620720 +The total amount of wall time = 524.443509 +The maximum resident set size (KB) = 617380 Test 022 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1230,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 731.134533 -The maximum resident set size (KB) = 1073096 +The total amount of wall time = 558.812973 +The maximum resident set size (KB) = 1068740 Test 023 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1280,14 +1281,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 533.338996 -The maximum resident set size (KB) = 1173564 +The total amount of wall time = 490.719298 +The maximum resident set size (KB) = 1170312 Test 024 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1298,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.365669 -The maximum resident set size (KB) = 523636 +The total amount of wall time = 88.639388 +The maximum resident set size (KB) = 523428 Test 025 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.959150 -The maximum resident set size (KB) = 350824 +The total amount of wall time = 48.059537 +The maximum resident set size (KB) = 354912 Test 026 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1330,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.939206 -The maximum resident set size (KB) = 522988 +The total amount of wall time = 82.467133 +The maximum resident set size (KB) = 522780 Test 027 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1352,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 147.082928 -The maximum resident set size (KB) = 518036 +The total amount of wall time = 132.008514 +The maximum resident set size (KB) = 516212 Test 028 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1374,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 152.091989 -The maximum resident set size (KB) = 517328 +The total amount of wall time = 132.694950 +The maximum resident set size (KB) = 519840 Test 029 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1428,14 +1429,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 203.839476 -The maximum resident set size (KB) = 1499612 +The total amount of wall time = 170.027599 +The maximum resident set size (KB) = 1499292 Test 030 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1474,14 +1475,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 96.160160 -The maximum resident set size (KB) = 705996 +The total amount of wall time = 91.913511 +The maximum resident set size (KB) = 703340 Test 031 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1528,14 +1529,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 186.257510 -The maximum resident set size (KB) = 1498856 +The total amount of wall time = 170.266026 +The maximum resident set size (KB) = 1500220 Test 032 control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1574,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 105.380307 -The maximum resident set size (KB) = 672028 +The total amount of wall time = 92.927551 +The maximum resident set size (KB) = 671868 Test 033 control_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1624,14 +1625,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 185.028980 -The maximum resident set size (KB) = 1494108 +The total amount of wall time = 172.736161 +The maximum resident set size (KB) = 1488136 Test 034 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1674,14 +1675,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 167.562534 -The maximum resident set size (KB) = 1579152 +The total amount of wall time = 146.711623 +The maximum resident set size (KB) = 1577512 Test 035 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1700,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 380.735238 -The maximum resident set size (KB) = 1495600 +The total amount of wall time = 307.596875 +The maximum resident set size (KB) = 1488532 Test 036 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1754,14 +1755,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 242.782194 -The maximum resident set size (KB) = 1552536 +The total amount of wall time = 224.993991 +The maximum resident set size (KB) = 1548160 Test 037 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1809,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 192.541357 -The maximum resident set size (KB) = 1493568 +The total amount of wall time = 170.706606 +The maximum resident set size (KB) = 1500132 Test 038 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1862,14 +1863,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 222.365086 -The maximum resident set size (KB) = 1503468 +The total amount of wall time = 194.389208 +The maximum resident set size (KB) = 1504168 Test 039 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1880,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.837850 -The maximum resident set size (KB) = 875476 +The total amount of wall time = 275.764227 +The maximum resident set size (KB) = 869992 Test 040 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.082096 -The maximum resident set size (KB) = 864236 +The total amount of wall time = 147.733141 +The maximum resident set size (KB) = 868100 Test 041 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1912,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.773627 -The maximum resident set size (KB) = 870196 +The total amount of wall time = 274.123039 +The maximum resident set size (KB) = 870404 Test 042 regional_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.923764 -The maximum resident set size (KB) = 870792 +The total amount of wall time = 147.573794 +The maximum resident set size (KB) = 871456 Test 043 regional_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1944,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.027104 -The maximum resident set size (KB) = 871524 +The total amount of wall time = 292.131751 +The maximum resident set size (KB) = 871308 Test 044 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1962,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.882295 -The maximum resident set size (KB) = 912964 +The total amount of wall time = 162.679209 +The maximum resident set size (KB) = 912616 Test 045 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -1977,14 +1978,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 291.918291 -The maximum resident set size (KB) = 1147676 +The total amount of wall time = 271.772855 +The maximum resident set size (KB) = 1146820 Test 046 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1995,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.943589 -The maximum resident set size (KB) = 876272 +The total amount of wall time = 275.111200 +The maximum resident set size (KB) = 870624 Test 047 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2013,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 382.971706 -The maximum resident set size (KB) = 622748 +The total amount of wall time = 351.508177 +The maximum resident set size (KB) = 621616 Test 048 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2031,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.791537 -The maximum resident set size (KB) = 870256 +The total amount of wall time = 308.677473 +The maximum resident set size (KB) = 872008 Test 049 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2049,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 351.180508 -The maximum resident set size (KB) = 866296 +The total amount of wall time = 324.035918 +The maximum resident set size (KB) = 871232 Test 050 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2067,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 263.993402 -The maximum resident set size (KB) = 911596 +The total amount of wall time = 182.510945 +The maximum resident set size (KB) = 913796 Test 051 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2122,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 420.639330 -The maximum resident set size (KB) = 900212 +The total amount of wall time = 403.271118 +The maximum resident set size (KB) = 896820 Test 052 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2139,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 234.967206 -The maximum resident set size (KB) = 1006040 +The total amount of wall time = 232.026656 +The maximum resident set size (KB) = 1006320 Test 053 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2193,14 +2194,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 434.949395 -The maximum resident set size (KB) = 900684 +The total amount of wall time = 416.010255 +The maximum resident set size (KB) = 902124 Test 054 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2247,14 +2248,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 376.880851 -The maximum resident set size (KB) = 981928 +The total amount of wall time = 362.315557 +The maximum resident set size (KB) = 981504 Test 055 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2293,14 +2294,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 208.624440 -The maximum resident set size (KB) = 812340 +The total amount of wall time = 204.868829 +The maximum resident set size (KB) = 812204 Test 056 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2347,14 +2348,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 430.536529 -The maximum resident set size (KB) = 897300 +The total amount of wall time = 402.600948 +The maximum resident set size (KB) = 903056 Test 057 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2401,14 +2402,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 443.786265 -The maximum resident set size (KB) = 902952 +The total amount of wall time = 418.282638 +The maximum resident set size (KB) = 902156 Test 058 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2447,14 +2448,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 305.066457 -The maximum resident set size (KB) = 821876 +The total amount of wall time = 297.679410 +The maximum resident set size (KB) = 816964 Test 059 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2501,14 +2502,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 413.345170 -The maximum resident set size (KB) = 896696 +The total amount of wall time = 385.918965 +The maximum resident set size (KB) = 902088 Test 060 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2555,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 405.126486 -The maximum resident set size (KB) = 911188 +The total amount of wall time = 384.408358 +The maximum resident set size (KB) = 908324 Test 061 hrrr_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2609,14 +2610,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 431.686530 -The maximum resident set size (KB) = 896844 +The total amount of wall time = 397.884945 +The maximum resident set size (KB) = 898056 Test 062 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2663,42 +2664,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 349.444184 -The maximum resident set size (KB) = 971852 +The total amount of wall time = 344.946759 +The maximum resident set size (KB) = 971948 Test 063 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 295.658419 -The maximum resident set size (KB) = 770184 +The total amount of wall time = 286.112815 +The maximum resident set size (KB) = 770044 Test 064 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 302.519888 -The maximum resident set size (KB) = 677816 +The total amount of wall time = 288.109077 +The maximum resident set size (KB) = 675876 Test 065 hrrr_control_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2745,14 +2746,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 426.537346 -The maximum resident set size (KB) = 897272 +The total amount of wall time = 395.511509 +The maximum resident set size (KB) = 897640 Test 066 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2767,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 493.145560 -The maximum resident set size (KB) = 586764 +The total amount of wall time = 463.034270 +The maximum resident set size (KB) = 586304 Test 067 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2789,14 +2790,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.734404 -The maximum resident set size (KB) = 578260 +The total amount of wall time = 449.794704 +The maximum resident set size (KB) = 578904 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_gf_intel Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2843,14 +2844,14 @@ Checking test 069 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 427.533004 -The maximum resident set size (KB) = 899060 +The total amount of wall time = 403.221686 +The maximum resident set size (KB) = 902852 Test 069 hrrr_gf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_c3_intel Checking test 070 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2897,14 +2898,14 @@ Checking test 070 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 438.471560 -The maximum resident set size (KB) = 900156 +The total amount of wall time = 403.118727 +The maximum resident set size (KB) = 899252 Test 070 hrrr_c3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmg_intel Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2915,14 +2916,14 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 355.968132 -The maximum resident set size (KB) = 584456 +The total amount of wall time = 336.818293 +The maximum resident set size (KB) = 590820 Test 071 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2933,14 +2934,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 339.913848 -The maximum resident set size (KB) = 583160 +The total amount of wall time = 331.020581 +The maximum resident set size (KB) = 583668 Test 072 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2951,26 +2952,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.985773 -The maximum resident set size (KB) = 552036 +The total amount of wall time = 181.586367 +The maximum resident set size (KB) = 553396 Test 073 control_ras_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 124.800357 -The maximum resident set size (KB) = 332920 +The total amount of wall time = 117.792113 +The maximum resident set size (KB) = 330676 Test 074 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3017,14 +3018,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 177.732077 -The maximum resident set size (KB) = 1495488 +The total amount of wall time = 165.590002 +The maximum resident set size (KB) = 1495584 Test 075 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3035,14 +3036,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.134259 -The maximum resident set size (KB) = 872432 +The total amount of wall time = 271.748858 +The maximum resident set size (KB) = 868104 Test 076 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3069,348 +3070,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 166.957811 -The maximum resident set size (KB) = 676856 +The total amount of wall time = 159.555792 +The maximum resident set size (KB) = 675500 Test 077 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.464553 -The maximum resident set size (KB) = 682300 +The total amount of wall time = 158.110079 +The maximum resident set size (KB) = 680212 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.783003 -The maximum resident set size (KB) = 684944 +The total amount of wall time = 179.975252 +The maximum resident set size (KB) = 689892 Test 079 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.779911 -The maximum resident set size (KB) = 684956 +The total amount of wall time = 160.597892 +The maximum resident set size (KB) = 684540 Test 080 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.101939 -The maximum resident set size (KB) = 717824 +The total amount of wall time = 249.872282 +The maximum resident set size (KB) = 718876 Test 081 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.437261 -The maximum resident set size (KB) = 721684 +The total amount of wall time = 245.528114 +The maximum resident set size (KB) = 718376 Test 082 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.256778 -The maximum resident set size (KB) = 695268 +The total amount of wall time = 162.522030 +The maximum resident set size (KB) = 701064 Test 083 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.693785 -The maximum resident set size (KB) = 741564 +The total amount of wall time = 163.053462 +The maximum resident set size (KB) = 740944 Test 084 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 190.909451 -The maximum resident set size (KB) = 1508640 +The total amount of wall time = 181.155737 +The maximum resident set size (KB) = 1514244 Test 085 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1054.792316 -The maximum resident set size (KB) = 892208 +The total amount of wall time = 1039.983216 +The maximum resident set size (KB) = 894200 Test 086 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.121617 -The maximum resident set size (KB) = 1058788 +The total amount of wall time = 297.914714 +The maximum resident set size (KB) = 1062200 Test 087 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.420838 -The maximum resident set size (KB) = 1057900 +The total amount of wall time = 290.013339 +The maximum resident set size (KB) = 1052092 Test 088 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.135253 -The maximum resident set size (KB) = 1057408 +The total amount of wall time = 298.009808 +The maximum resident set size (KB) = 1060172 Test 089 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 324.980330 -The maximum resident set size (KB) = 1139944 +The total amount of wall time = 308.038425 +The maximum resident set size (KB) = 1142816 Test 090 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 318.288507 -The maximum resident set size (KB) = 1060356 +The total amount of wall time = 304.581903 +The maximum resident set size (KB) = 1057880 Test 091 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.165285 -The maximum resident set size (KB) = 1055908 +The total amount of wall time = 306.013907 +The maximum resident set size (KB) = 1061464 Test 092 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.925908 -The maximum resident set size (KB) = 1058744 +The total amount of wall time = 300.911145 +The maximum resident set size (KB) = 1062080 Test 093 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.809893 -The maximum resident set size (KB) = 1061092 +The total amount of wall time = 298.163338 +The maximum resident set size (KB) = 1055656 Test 094 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.897821 -The maximum resident set size (KB) = 1057632 +The total amount of wall time = 292.461976 +The maximum resident set size (KB) = 1058516 Test 095 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.978943 -The maximum resident set size (KB) = 1054480 +The total amount of wall time = 298.394259 +The maximum resident set size (KB) = 1063744 Test 096 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 494.798426 -The maximum resident set size (KB) = 1054612 +The total amount of wall time = 488.855872 +The maximum resident set size (KB) = 1060976 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.555157 -The maximum resident set size (KB) = 1053656 +The total amount of wall time = 292.948088 +The maximum resident set size (KB) = 1054672 Test 098 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 363.530712 -The maximum resident set size (KB) = 1061788 +The total amount of wall time = 353.521442 +The maximum resident set size (KB) = 1061448 Test 099 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.141049 -The maximum resident set size (KB) = 1059396 +The total amount of wall time = 298.441741 +The maximum resident set size (KB) = 1060460 Test 100 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.977579 -The maximum resident set size (KB) = 359368 +The total amount of wall time = 296.317919 +The maximum resident set size (KB) = 358252 Test 101 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3421,14 +3422,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 221.519475 -The maximum resident set size (KB) = 899936 +The total amount of wall time = 221.895988 +The maximum resident set size (KB) = 899060 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3475,14 +3476,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 336.805955 -The maximum resident set size (KB) = 785308 +The total amount of wall time = 333.938125 +The maximum resident set size (KB) = 777896 Test 103 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3529,14 +3530,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 176.776711 -The maximum resident set size (KB) = 774944 +The total amount of wall time = 174.932014 +The maximum resident set size (KB) = 775836 Test 104 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3583,14 +3584,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 179.030952 -The maximum resident set size (KB) = 788684 +The total amount of wall time = 174.854184 +The maximum resident set size (KB) = 788760 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3637,14 +3638,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 309.109547 -The maximum resident set size (KB) = 833596 +The total amount of wall time = 302.418928 +The maximum resident set size (KB) = 842588 Test 106 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3691,14 +3692,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 165.417627 -The maximum resident set size (KB) = 825856 +The total amount of wall time = 156.249980 +The maximum resident set size (KB) = 824792 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3745,14 +3746,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 182.840969 -The maximum resident set size (KB) = 780736 +The total amount of wall time = 181.824017 +The maximum resident set size (KB) = 776684 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3791,42 +3792,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 254.266536 -The maximum resident set size (KB) = 710156 +The total amount of wall time = 246.369618 +The maximum resident set size (KB) = 707036 Test 109 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 98.538973 -The maximum resident set size (KB) = 671468 +The total amount of wall time = 91.495034 +The maximum resident set size (KB) = 668444 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 101.876253 -The maximum resident set size (KB) = 633152 +The total amount of wall time = 93.347748 +The maximum resident set size (KB) = 633000 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3842,40 +3843,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 115.086287 -The maximum resident set size (KB) = 1066900 +The total amount of wall time = 113.961260 +The maximum resident set size (KB) = 1062444 Test 112 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 79.868609 -The maximum resident set size (KB) = 1064628 +The total amount of wall time = 56.331593 +The maximum resident set size (KB) = 1065680 Test 113 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.338831 -The maximum resident set size (KB) = 960372 +The total amount of wall time = 70.341407 +The maximum resident set size (KB) = 954572 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3922,123 +3923,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 228.967177 -The maximum resident set size (KB) = 812328 +The total amount of wall time = 228.202100 +The maximum resident set size (KB) = 813412 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.265329 -The maximum resident set size (KB) = 945180 +The total amount of wall time = 288.509264 +The maximum resident set size (KB) = 946112 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.699209 -The maximum resident set size (KB) = 940560 +The total amount of wall time = 281.631007 +The maximum resident set size (KB) = 943584 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 886.567999 -The maximum resident set size (KB) = 1094880 +The total amount of wall time = 876.360138 +The maximum resident set size (KB) = 1091076 Test 118 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 535.546961 -The maximum resident set size (KB) = 1098008 +The total amount of wall time = 501.103692 +The maximum resident set size (KB) = 1094888 Test 119 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 904.997676 -The maximum resident set size (KB) = 1167692 +The total amount of wall time = 875.732408 +The maximum resident set size (KB) = 1163152 Test 120 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.270470 -The maximum resident set size (KB) = 964564 +The total amount of wall time = 292.170135 +The maximum resident set size (KB) = 961400 Test 121 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 290.822128 -The maximum resident set size (KB) = 1122204 +The total amount of wall time = 246.316793 +The maximum resident set size (KB) = 1122620 Test 122 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 772.809320 -The maximum resident set size (KB) = 1480400 +The total amount of wall time = 277.829060 +The maximum resident set size (KB) = 1510680 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4047,14 +4048,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 414.963006 -The maximum resident set size (KB) = 1106244 +The total amount of wall time = 374.335205 +The maximum resident set size (KB) = 1096408 Test 124 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4063,14 +4064,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 782.450892 -The maximum resident set size (KB) = 1195056 +The total amount of wall time = 689.625066 +The maximum resident set size (KB) = 1195336 Test 125 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4081,14 +4082,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 929.748932 -The maximum resident set size (KB) = 1167116 +The total amount of wall time = 877.057964 +The maximum resident set size (KB) = 1164320 Test 126 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4110,14 +4111,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 322.641931 -The maximum resident set size (KB) = 540248 +The total amount of wall time = 305.710725 +The maximum resident set size (KB) = 543352 Test 127 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4139,14 +4140,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 509.424705 -The maximum resident set size (KB) = 389232 +The total amount of wall time = 320.835571 +The maximum resident set size (KB) = 389252 Test 128 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4155,14 +4156,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 450.872144 -The maximum resident set size (KB) = 546192 +The total amount of wall time = 368.210906 +The maximum resident set size (KB) = 535832 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4209,14 +4210,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 207.596580 -The maximum resident set size (KB) = 307964 +The total amount of wall time = 160.750058 +The maximum resident set size (KB) = 309476 Test 130 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4263,14 +4264,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 184.032350 -The maximum resident set size (KB) = 290764 +The total amount of wall time = 167.407977 +The maximum resident set size (KB) = 289040 Test 131 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4352,14 +4353,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 454.181429 -The maximum resident set size (KB) = 377904 +The total amount of wall time = 451.785086 +The maximum resident set size (KB) = 376840 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4441,14 +4442,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 495.680243 -The maximum resident set size (KB) = 386784 +The total amount of wall time = 495.109674 +The maximum resident set size (KB) = 390944 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4457,14 +4458,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 229.704985 -The maximum resident set size (KB) = 557952 +The total amount of wall time = 203.241984 +The maximum resident set size (KB) = 556048 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4486,14 +4487,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 219.221153 -The maximum resident set size (KB) = 553492 +The total amount of wall time = 190.722097 +The maximum resident set size (KB) = 553336 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4515,14 +4516,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 258.932440 -The maximum resident set size (KB) = 421272 +The total amount of wall time = 210.914127 +The maximum resident set size (KB) = 428176 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4531,42 +4532,60 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 244.640673 -The maximum resident set size (KB) = 617236 +The total amount of wall time = 245.421229 +The maximum resident set size (KB) = 617092 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 81.354996 -The maximum resident set size (KB) = 324656 +The total amount of wall time = 80.870886 +The maximum resident set size (KB) = 327668 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 801.094002 -The maximum resident set size (KB) = 624660 +The total amount of wall time = 800.893562 +The maximum resident set size (KB) = 629116 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 496.243852 +The maximum resident set size (KB) = 664460 + +Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4574,14 +4593,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.557010 -The maximum resident set size (KB) = 1092556 +The total amount of wall time = 345.724239 +The maximum resident set size (KB) = 1093280 Test 141 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4589,131 +4608,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 410.110568 -The maximum resident set size (KB) = 1073112 +The total amount of wall time = 345.772834 +The maximum resident set size (KB) = 1072996 Test 142 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 984.056078 -The maximum resident set size (KB) = 886596 +The total amount of wall time = 947.510105 +The maximum resident set size (KB) = 824996 Test 143 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 156.163541 -The maximum resident set size (KB) = 739492 +The total amount of wall time = 143.074062 +The maximum resident set size (KB) = 740136 Test 144 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_restart_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 110.056785 -The maximum resident set size (KB) = 728104 +The total amount of wall time = 89.088790 +The maximum resident set size (KB) = 728348 Test 145 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.601717 -The maximum resident set size (KB) = 619392 +The total amount of wall time = 134.449534 +The maximum resident set size (KB) = 621328 Test 146 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.629308 -The maximum resident set size (KB) = 621312 +The total amount of wall time = 137.138365 +The maximum resident set size (KB) = 619448 Test 147 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 149.351145 -The maximum resident set size (KB) = 619220 +The total amount of wall time = 137.689264 +The maximum resident set size (KB) = 618736 Test 148 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 172.265648 -The maximum resident set size (KB) = 726864 +The total amount of wall time = 143.635287 +The maximum resident set size (KB) = 741236 Test 149 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 166.408250 -The maximum resident set size (KB) = 737872 +The total amount of wall time = 144.216786 +The maximum resident set size (KB) = 740700 Test 150 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 162.045014 -The maximum resident set size (KB) = 623012 +The total amount of wall time = 134.701772 +The maximum resident set size (KB) = 623220 Test 151 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4722,14 +4741,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 437.696803 -The maximum resident set size (KB) = 584064 +The total amount of wall time = 431.145037 +The maximum resident set size (KB) = 584268 Test 152 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4738,64 +4757,64 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 438.531801 -The maximum resident set size (KB) = 564360 +The total amount of wall time = 425.243028 +The maximum resident set size (KB) = 559876 Test 153 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 156.381083 -The maximum resident set size (KB) = 739376 +The total amount of wall time = 142.479748 +The maximum resident set size (KB) = 739092 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 272.067513 -The maximum resident set size (KB) = 1983424 +The total amount of wall time = 257.988191 +The maximum resident set size (KB) = 1985156 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 272.494427 -The maximum resident set size (KB) = 1985468 +The total amount of wall time = 258.474787 +The maximum resident set size (KB) = 1983920 Test 156 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_cfsr_faster_intel Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 153.622900 -The maximum resident set size (KB) = 737980 +The total amount of wall time = 143.879098 +The maximum resident set size (KB) = 739160 Test 157 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_lnd_gswp3_intel Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4804,14 +4823,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 28.404533 -The maximum resident set size (KB) = 218564 +The total amount of wall time = 22.040653 +The maximum resident set size (KB) = 216532 Test 158 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_lnd_gswp3_rst_intel Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4820,14 +4839,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 31.160765 -The maximum resident set size (KB) = 224916 +The total amount of wall time = 26.676727 +The maximum resident set size (KB) = 225488 Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_atmlnd_sbs_intel Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4912,14 +4931,14 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 233.811857 -The maximum resident set size (KB) = 1552616 +The total amount of wall time = 227.977287 +The maximum resident set size (KB) = 1547664 -Test 160 control_p8_atmlnd_sbs_intel PASS Tries: 2 +Test 160 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmwav_control_noaero_p8_intel Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4962,14 +4981,14 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 103.614017 -The maximum resident set size (KB) = 1541620 +The total amount of wall time = 103.828616 +The maximum resident set size (KB) = 1530140 Test 161 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_atmwav_intel Checking test 162 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5013,14 +5032,14 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 101.525871 -The maximum resident set size (KB) = 549788 +The total amount of wall time = 90.378077 +The maximum resident set size (KB) = 543696 Test 162 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_intel Checking test 163 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5064,14 +5083,14 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 271.262476 -The maximum resident set size (KB) = 2830500 +The total amount of wall time = 241.358245 +The maximum resident set size (KB) = 2830128 Test 163 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_rad_intel Checking test 164 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5115,14 +5134,14 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 314.457851 -The maximum resident set size (KB) = 2892004 +The total amount of wall time = 282.543325 +The maximum resident set size (KB) = 2891912 Test 164 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_rad_micro_intel Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5166,14 +5185,14 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 321.515013 -The maximum resident set size (KB) = 2902844 +The total amount of wall time = 286.862974 +The maximum resident set size (KB) = 2903948 Test 165 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_atmaq_intel Checking test 166 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5189,14 +5208,14 @@ Checking test 166 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 737.111190 -The maximum resident set size (KB) = 5325524 +The total amount of wall time = 661.689766 +The maximum resident set size (KB) = 5326376 Test 166 regional_atmaq_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29016/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_atmaq_debug_intel Checking test 167 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5210,54 +5229,12 @@ Checking test 167 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 1421.352360 -The maximum resident set size (KB) = 4835800 +The total amount of wall time = 1299.077904 +The maximum resident set size (KB) = 4833884 Test 167 regional_atmaq_debug_intel PASS -FAILED TESTS: -compile_hafsw_faster_intel failed in run_compile - -REGRESSION TEST FAILED -Fri Sep 15 19:44:47 UTC 2023 -Elapsed time: 03h:33m:31s. Have a nice day! -Fri Sep 15 20:01:44 UTC 2023 -Start Regression test - -Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile hafsw_faster_intel elapsed time 530 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_9790/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 500.600416 -The maximum resident set size (KB) = 665108 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Sep 15 20:22:39 UTC 2023 -Elapsed time: 00h:20m:57s. Have a nice day! +Wed Sep 20 13:54:40 UTC 2023 +Elapsed time: 01h:37m:20s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 593fa95cd5..b68e107b4b 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ -Fri 15 Sep 2023 08:05:08 PM EDT +Wed 20 Sep 2023 08:30:16 AM EDT Start Regression test -Testing UFSWM Hash: a5012ee7030309bc386e1caea0febb9130e2cdd5 +Testing UFSWM Hash: 91a91efaa361855c350f5fd9895c47ec23edf84a Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,43 +15,43 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 677 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 713 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 660 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 801 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 701 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 649 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 219 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 663 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 722 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 661 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 784 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 690 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 695 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 234 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 227 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 731 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 721 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 691 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 803 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 791 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 814 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 885 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1214 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 833 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 769 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 701 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 778 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 753 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 753 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 874 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 246 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1215 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 815 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 771 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.015670 - 0: The maximum resident set size (KB) = 1568460 + 0: The total amount of wall time = 310.251787 + 0: The maximum resident set size (KB) = 1568312 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 237.799919 - 0: The maximum resident set size (KB) = 1466980 + 0: The total amount of wall time = 223.066508 + 0: The maximum resident set size (KB) = 1467004 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.526957 - 0: The maximum resident set size (KB) = 1602400 + 0: The total amount of wall time = 354.893740 + 0: The maximum resident set size (KB) = 1602536 Test 003 cpld_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.705047 - 0: The maximum resident set size (KB) = 1489264 + 0: The total amount of wall time = 198.452905 + 0: The maximum resident set size (KB) = 1473068 Test 004 cpld_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 376.957469 - 0: The maximum resident set size (KB) = 1613256 + 0: The total amount of wall time = 357.272733 + 0: The maximum resident set size (KB) = 1613592 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 217.628792 - 0: The maximum resident set size (KB) = 1324552 + 0: The total amount of wall time = 202.702199 + 0: The maximum resident set size (KB) = 1308208 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_2threads_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.875634 - 0: The maximum resident set size (KB) = 1826848 + 0: The total amount of wall time = 341.643889 + 0: The maximum resident set size (KB) = 1826600 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_decomp_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 367.833355 - 0: The maximum resident set size (KB) = 1598588 + 0: The total amount of wall time = 354.958782 + 0: The maximum resident set size (KB) = 1599192 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_mpi_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.046345 - 0: The maximum resident set size (KB) = 1559124 + 0: The total amount of wall time = 292.200042 + 0: The maximum resident set size (KB) = 1558788 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 668.038295 - 0: The maximum resident set size (KB) = 3071716 + 0: The total amount of wall time = 620.438531 + 0: The maximum resident set size (KB) = 3070376 Test 010 cpld_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_restart_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 491.196405 - 0: The maximum resident set size (KB) = 2995232 + 0: The total amount of wall time = 371.797723 + 0: The maximum resident set size (KB) = 3008932 Test 011 cpld_restart_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.755326 - 0: The maximum resident set size (KB) = 1485236 + 0: The total amount of wall time = 264.617220 + 0: The maximum resident set size (KB) = 1485108 Test 012 cpld_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_nowave_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 285.932566 - 0: The maximum resident set size (KB) = 1520880 + 0: The total amount of wall time = 273.240419 + 0: The maximum resident set size (KB) = 1521400 Test 013 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 535.174519 - 0: The maximum resident set size (KB) = 1603048 + 0: The total amount of wall time = 530.927498 + 0: The maximum resident set size (KB) = 1603924 Test 014 cpld_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.615650 - 0: The maximum resident set size (KB) = 1505072 + 0: The total amount of wall time = 362.213566 + 0: The maximum resident set size (KB) = 1505276 Test 015 cpld_debug_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 285.001767 - 0: The maximum resident set size (KB) = 1521888 + 0: The total amount of wall time = 274.600200 + 0: The maximum resident set size (KB) = 1522156 Test 016 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 600.695872 - 0: The maximum resident set size (KB) = 2591248 + 0: The total amount of wall time = 596.171703 + 0: The maximum resident set size (KB) = 2591984 Test 017 cpld_control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.971179 - 0: The maximum resident set size (KB) = 1602096 + 0: The total amount of wall time = 341.441071 + 0: The maximum resident set size (KB) = 1602812 Test 018 cpld_control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.630213 - 0: The maximum resident set size (KB) = 496064 + 0: The total amount of wall time = 205.195287 + 0: The maximum resident set size (KB) = 496040 Test 019 control_flake_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 140.244138 - 0: The maximum resident set size (KB) = 448392 + 0: The total amount of wall time = 135.042201 + 0: The maximum resident set size (KB) = 448128 Test 020 control_CubedSphereGrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 163.597323 - 0: The maximum resident set size (KB) = 452392 + 0: The total amount of wall time = 145.443720 + 0: The maximum resident set size (KB) = 451972 Test 021 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.389245 - 0: The maximum resident set size (KB) = 448160 + 0: The total amount of wall time = 138.062644 + 0: The maximum resident set size (KB) = 447980 Test 022 control_latlon_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.391772 - 0: The maximum resident set size (KB) = 448172 + 0: The total amount of wall time = 144.927039 + 0: The maximum resident set size (KB) = 448220 Test 023 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 417.415218 -0: The maximum resident set size (KB) = 651540 +0: The total amount of wall time = 419.210565 +0: The maximum resident set size (KB) = 651564 Test 024 control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 573.813682 - 0: The maximum resident set size (KB) = 554180 + 0: The total amount of wall time = 566.776044 + 0: The maximum resident set size (KB) = 554076 Test 025 control_c192_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1085.900230 - 0: The maximum resident set size (KB) = 946580 + 0: The total amount of wall time = 1080.307649 + 0: The maximum resident set size (KB) = 946672 Test 026 control_c384_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 928.453172 - 0: The maximum resident set size (KB) = 1073792 + 0: The total amount of wall time = 895.201649 + 0: The maximum resident set size (KB) = 1073704 Test 027 control_c384gdas_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 95.988560 - 0: The maximum resident set size (KB) = 454748 + 0: The total amount of wall time = 91.073445 + 0: The maximum resident set size (KB) = 454608 Test 028 control_stochy_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 51.102098 - 0: The maximum resident set size (KB) = 269204 + 0: The total amount of wall time = 48.965802 + 0: The maximum resident set size (KB) = 269096 Test 029 control_stochy_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.075741 - 0: The maximum resident set size (KB) = 452748 + 0: The total amount of wall time = 84.795807 + 0: The maximum resident set size (KB) = 452684 Test 030 control_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.033629 - 0: The maximum resident set size (KB) = 448084 + 0: The total amount of wall time = 140.756240 + 0: The maximum resident set size (KB) = 448236 Test 031 control_iovr4_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.613752 - 0: The maximum resident set size (KB) = 448164 + 0: The total amount of wall time = 140.067396 + 0: The maximum resident set size (KB) = 448244 Test 032 control_iovr5_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 178.303082 - 0: The maximum resident set size (KB) = 1419508 + 0: The total amount of wall time = 169.121183 + 0: The maximum resident set size (KB) = 1419880 Test 033 control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_restart_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.514177 - 0: The maximum resident set size (KB) = 623508 + 0: The total amount of wall time = 89.287443 + 0: The maximum resident set size (KB) = 623520 Test 034 control_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 180.534151 - 0: The maximum resident set size (KB) = 1426928 + 0: The total amount of wall time = 169.639650 + 0: The maximum resident set size (KB) = 1428808 Test 035 control_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_restart_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 97.298870 - 0: The maximum resident set size (KB) = 597080 + 0: The total amount of wall time = 91.923913 + 0: The maximum resident set size (KB) = 596676 Test 036 control_restart_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_decomp_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 186.781477 - 0: The maximum resident set size (KB) = 1413308 + 0: The total amount of wall time = 176.110961 + 0: The maximum resident set size (KB) = 1413708 Test 037 control_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_2threads_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.241659 - 0: The maximum resident set size (KB) = 1499360 + 0: The total amount of wall time = 158.315438 + 0: The maximum resident set size (KB) = 1500528 Test 038 control_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 329.256940 - 0: The maximum resident set size (KB) = 1420048 + 0: The total amount of wall time = 317.236362 + 0: The maximum resident set size (KB) = 1420084 Test 039 control_p8_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 241.448752 - 0: The maximum resident set size (KB) = 1473164 + 0: The total amount of wall time = 232.622567 + 0: The maximum resident set size (KB) = 1473280 Test 040 control_p8_rrtmgp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 183.393832 - 0: The maximum resident set size (KB) = 1423452 + 0: The total amount of wall time = 173.147404 + 0: The maximum resident set size (KB) = 1424840 Test 041 control_p8_mynn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 202.776350 - 0: The maximum resident set size (KB) = 1433172 + 0: The total amount of wall time = 194.737666 + 0: The maximum resident set size (KB) = 1425436 Test 042 merra2_thompson_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.008688 - 0: The maximum resident set size (KB) = 805692 + 0: The total amount of wall time = 313.651326 + 0: The maximum resident set size (KB) = 805816 Test 043 regional_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 170.930782 - 0: The maximum resident set size (KB) = 802656 + 0: The total amount of wall time = 159.600502 + 0: The maximum resident set size (KB) = 802628 Test 044 regional_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.104945 - 0: The maximum resident set size (KB) = 805820 + 0: The total amount of wall time = 314.383885 + 0: The maximum resident set size (KB) = 805216 Test 045 regional_control_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_restart_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 165.615540 - 0: The maximum resident set size (KB) = 802888 + 0: The total amount of wall time = 159.954407 + 0: The maximum resident set size (KB) = 802344 Test 046 regional_restart_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 342.529104 - 0: The maximum resident set size (KB) = 803648 + 0: The total amount of wall time = 332.984084 + 0: The maximum resident set size (KB) = 803744 Test 047 regional_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 200.204200 - 0: The maximum resident set size (KB) = 809192 + 0: The total amount of wall time = 180.423697 + 0: The maximum resident set size (KB) = 809908 Test 048 regional_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 328.368012 - 0: The maximum resident set size (KB) = 1077668 + 0: The total amount of wall time = 312.835223 + 0: The maximum resident set size (KB) = 1077464 Test 049 regional_noquilt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 320.172182 - 0: The maximum resident set size (KB) = 801008 + 0: The total amount of wall time = 316.845752 + 0: The maximum resident set size (KB) = 800936 Test 050 regional_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_2dwrtdecomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.450480 - 0: The maximum resident set size (KB) = 809152 + 0: The total amount of wall time = 319.202563 + 0: The maximum resident set size (KB) = 808768 Test 051 regional_2dwrtdecomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 405.109648 - 0: The maximum resident set size (KB) = 550112 + 0: The total amount of wall time = 401.918626 + 0: The maximum resident set size (KB) = 549768 Test 052 regional_wofs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 460.372033 - 0: The maximum resident set size (KB) = 825336 + 0: The total amount of wall time = 449.620935 + 0: The maximum resident set size (KB) = 825368 Test 053 rap_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.204612 - 0: The maximum resident set size (KB) = 920580 + 0: The total amount of wall time = 250.129184 + 0: The maximum resident set size (KB) = 920828 Test 054 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 472.275768 - 0: The maximum resident set size (KB) = 832360 + 0: The total amount of wall time = 463.647568 + 0: The maximum resident set size (KB) = 832472 Test 055 rap_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 433.318210 - 0: The maximum resident set size (KB) = 911592 + 0: The total amount of wall time = 426.223051 + 0: The maximum resident set size (KB) = 911224 Test 056 rap_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.609655 - 0: The maximum resident set size (KB) = 729500 + 0: The total amount of wall time = 227.625507 + 0: The maximum resident set size (KB) = 729432 Test 057 rap_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 458.951225 - 0: The maximum resident set size (KB) = 833520 + 0: The total amount of wall time = 449.216606 + 0: The maximum resident set size (KB) = 833392 Test 058 rap_sfcdiff_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 476.177740 - 0: The maximum resident set size (KB) = 832384 + 0: The total amount of wall time = 464.812089 + 0: The maximum resident set size (KB) = 832368 Test 059 rap_sfcdiff_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 338.406316 - 0: The maximum resident set size (KB) = 738468 + 0: The total amount of wall time = 333.848098 + 0: The maximum resident set size (KB) = 738424 Test 060 rap_sfcdiff_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 439.220069 - 0: The maximum resident set size (KB) = 830792 + 0: The total amount of wall time = 429.696299 + 0: The maximum resident set size (KB) = 830932 Test 061 hrrr_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 438.377163 - 0: The maximum resident set size (KB) = 838240 + 0: The total amount of wall time = 429.836751 + 0: The maximum resident set size (KB) = 838380 Test 062 hrrr_control_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 453.055487 - 0: The maximum resident set size (KB) = 830428 + 0: The total amount of wall time = 445.009792 + 0: The maximum resident set size (KB) = 822332 Test 063 hrrr_control_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 405.133485 - 0: The maximum resident set size (KB) = 904216 + 0: The total amount of wall time = 396.239592 + 0: The maximum resident set size (KB) = 903952 Test 064 hrrr_control_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.942855 - 0: The maximum resident set size (KB) = 685820 + 0: The total amount of wall time = 320.886599 + 0: The maximum resident set size (KB) = 685956 Test 065 hrrr_control_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 328.148931 - 0: The maximum resident set size (KB) = 601556 + 0: The total amount of wall time = 324.358523 + 0: The maximum resident set size (KB) = 600900 Test 066 hrrr_control_restart_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 453.316451 - 0: The maximum resident set size (KB) = 830524 + 0: The total amount of wall time = 439.323011 + 0: The maximum resident set size (KB) = 830500 Test 067 rrfs_v1beta_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 551.472828 - 0: The maximum resident set size (KB) = 504028 + 0: The total amount of wall time = 546.130541 + 0: The maximum resident set size (KB) = 504116 Test 068 rrfs_v1nssl_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.519865 - 0: The maximum resident set size (KB) = 499564 + 0: The total amount of wall time = 529.959036 + 0: The maximum resident set size (KB) = 499652 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_gf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_gf_intel Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 070 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 460.720579 - 0: The maximum resident set size (KB) = 824744 + 0: The total amount of wall time = 448.424384 + 0: The maximum resident set size (KB) = 833072 Test 070 hrrr_gf_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_c3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_c3_intel Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3017,14 +3017,14 @@ Checking test 071 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 459.657477 - 0: The maximum resident set size (KB) = 824768 + 0: The total amount of wall time = 449.991276 + 0: The maximum resident set size (KB) = 833028 Test 071 hrrr_c3_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 366.891659 - 0: The maximum resident set size (KB) = 514228 + 0: The total amount of wall time = 361.539674 + 0: The maximum resident set size (KB) = 514260 Test 072 control_csawmgt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,26 +3053,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.941383 - 0: The maximum resident set size (KB) = 482496 + 0: The total amount of wall time = 194.546847 + 0: The maximum resident set size (KB) = 482744 Test 073 control_ras_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 122.398375 - 0: The maximum resident set size (KB) = 257844 + 0: The total amount of wall time = 120.638347 + 0: The maximum resident set size (KB) = 258096 Test 074 control_wam_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3119,14 +3119,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.394316 - 0: The maximum resident set size (KB) = 1419476 + 0: The total amount of wall time = 160.481750 + 0: The maximum resident set size (KB) = 1419672 Test 075 control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3137,14 +3137,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.860997 - 0: The maximum resident set size (KB) = 805540 + 0: The total amount of wall time = 293.775721 + 0: The maximum resident set size (KB) = 805536 Test 076 regional_control_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3171,348 +3171,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.207650 - 0: The maximum resident set size (KB) = 613236 + 0: The total amount of wall time = 151.016882 + 0: The maximum resident set size (KB) = 613176 Test 077 control_CubedSphereGrid_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.823091 - 0: The maximum resident set size (KB) = 612612 + 0: The total amount of wall time = 156.678523 + 0: The maximum resident set size (KB) = 612520 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.732762 - 0: The maximum resident set size (KB) = 616916 + 0: The total amount of wall time = 170.074580 + 0: The maximum resident set size (KB) = 616968 Test 079 control_stochy_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.656709 - 0: The maximum resident set size (KB) = 615624 + 0: The total amount of wall time = 167.529698 + 0: The maximum resident set size (KB) = 615504 Test 080 control_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 246.437628 - 0: The maximum resident set size (KB) = 653200 + 0: The total amount of wall time = 242.504851 + 0: The maximum resident set size (KB) = 653004 Test 081 control_csawmg_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.879126 - 0: The maximum resident set size (KB) = 653312 + 0: The total amount of wall time = 238.749519 + 0: The maximum resident set size (KB) = 653216 Test 082 control_csawmgt_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.517309 - 0: The maximum resident set size (KB) = 625472 + 0: The total amount of wall time = 154.308576 + 0: The maximum resident set size (KB) = 625540 Test 083 control_ras_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.950479 - 0: The maximum resident set size (KB) = 667756 + 0: The total amount of wall time = 156.343354 + 0: The maximum resident set size (KB) = 667968 Test 084 control_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.858593 - 0: The maximum resident set size (KB) = 1436900 + 0: The total amount of wall time = 171.517923 + 0: The maximum resident set size (KB) = 1436856 Test 085 control_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1029.850035 - 0: The maximum resident set size (KB) = 829464 + 0: The total amount of wall time = 1027.975277 + 0: The maximum resident set size (KB) = 829908 Test 086 regional_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.118509 - 0: The maximum resident set size (KB) = 997528 + 0: The total amount of wall time = 281.400323 + 0: The maximum resident set size (KB) = 997468 Test 087 rap_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.949389 - 0: The maximum resident set size (KB) = 986692 + 0: The total amount of wall time = 275.171292 + 0: The maximum resident set size (KB) = 994816 Test 088 hrrr_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_unified_drag_suite_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.210437 - 0: The maximum resident set size (KB) = 997436 + 0: The total amount of wall time = 280.950133 + 0: The maximum resident set size (KB) = 997496 Test 089 rap_unified_drag_suite_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.406307 - 0: The maximum resident set size (KB) = 1079676 + 0: The total amount of wall time = 297.901081 + 0: The maximum resident set size (KB) = 1079684 Test 090 rap_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.123725 - 0: The maximum resident set size (KB) = 988988 + 0: The total amount of wall time = 291.769592 + 0: The maximum resident set size (KB) = 997056 Test 091 rap_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_unified_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.481329 - 0: The maximum resident set size (KB) = 997564 + 0: The total amount of wall time = 286.236815 + 0: The maximum resident set size (KB) = 997588 Test 092 rap_unified_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.749373 - 0: The maximum resident set size (KB) = 994116 + 0: The total amount of wall time = 283.072704 + 0: The maximum resident set size (KB) = 990016 Test 093 rap_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.456054 - 0: The maximum resident set size (KB) = 997336 + 0: The total amount of wall time = 280.591946 + 0: The maximum resident set size (KB) = 997476 Test 094 rap_progcld_thompson_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.584884 - 0: The maximum resident set size (KB) = 997120 + 0: The total amount of wall time = 274.867481 + 0: The maximum resident set size (KB) = 997168 Test 095 rap_noah_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.901464 - 0: The maximum resident set size (KB) = 997396 + 0: The total amount of wall time = 280.516354 + 0: The maximum resident set size (KB) = 993204 Test 096 rap_sfcdiff_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.859659 - 0: The maximum resident set size (KB) = 988712 + 0: The total amount of wall time = 464.587669 + 0: The maximum resident set size (KB) = 992724 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.721988 - 0: The maximum resident set size (KB) = 994644 + 0: The total amount of wall time = 276.007595 + 0: The maximum resident set size (KB) = 994604 Test 098 rrfs_v1beta_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.338318 - 0: The maximum resident set size (KB) = 991928 + 0: The total amount of wall time = 345.522376 + 0: The maximum resident set size (KB) = 1000000 Test 099 rap_clm_lake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.655680 - 0: The maximum resident set size (KB) = 997388 + 0: The total amount of wall time = 282.697940 + 0: The maximum resident set size (KB) = 997340 Test 100 rap_flake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.504151 - 0: The maximum resident set size (KB) = 288104 + 0: The total amount of wall time = 285.485490 + 0: The maximum resident set size (KB) = 288068 Test 101 control_wam_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 244.071364 - 0: The maximum resident set size (KB) = 819676 + 0: The total amount of wall time = 238.722050 + 0: The maximum resident set size (KB) = 819588 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3577,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 373.631109 - 0: The maximum resident set size (KB) = 718608 + 0: The total amount of wall time = 368.851724 + 0: The maximum resident set size (KB) = 718528 Test 103 rap_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3631,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.923688 - 0: The maximum resident set size (KB) = 716680 + 0: The total amount of wall time = 188.866489 + 0: The maximum resident set size (KB) = 715116 Test 104 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3685,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.240142 - 0: The maximum resident set size (KB) = 714068 + 0: The total amount of wall time = 189.539171 + 0: The maximum resident set size (KB) = 720440 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3739,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 348.924831 - 0: The maximum resident set size (KB) = 769860 + 0: The total amount of wall time = 344.965563 + 0: The maximum resident set size (KB) = 769736 Test 106 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 181.232289 - 0: The maximum resident set size (KB) = 763000 + 0: The total amount of wall time = 175.474743 + 0: The maximum resident set size (KB) = 767060 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3847,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 199.254604 - 0: The maximum resident set size (KB) = 716156 + 0: The total amount of wall time = 194.043165 + 0: The maximum resident set size (KB) = 707496 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,42 +3893,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.932656 - 0: The maximum resident set size (KB) = 632124 + 0: The total amount of wall time = 273.507805 + 0: The maximum resident set size (KB) = 632184 Test 109 rap_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.990074 - 0: The maximum resident set size (KB) = 594280 + 0: The total amount of wall time = 98.429046 + 0: The maximum resident set size (KB) = 594660 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 103.830063 - 0: The maximum resident set size (KB) = 559708 + 0: The total amount of wall time = 100.869811 + 0: The maximum resident set size (KB) = 560400 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,40 +3944,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.027135 - 0: The maximum resident set size (KB) = 941100 + 0: The total amount of wall time = 118.637323 + 0: The maximum resident set size (KB) = 941040 Test 112 conus13km_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 62.916753 - 0: The maximum resident set size (KB) = 947496 + 0: The total amount of wall time = 45.249592 + 0: The maximum resident set size (KB) = 947916 Test 113 conus13km_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 72.642910 + 0: The total amount of wall time = 64.698305 0: The maximum resident set size (KB) = 887624 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,123 +4024,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 253.189669 - 0: The maximum resident set size (KB) = 728780 + 0: The total amount of wall time = 248.022680 + 0: The maximum resident set size (KB) = 728868 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.131034 - 0: The maximum resident set size (KB) = 881796 + 0: The total amount of wall time = 277.339610 + 0: The maximum resident set size (KB) = 873644 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.664741 - 0: The maximum resident set size (KB) = 880700 + 0: The total amount of wall time = 274.604096 + 0: The maximum resident set size (KB) = 880820 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 875.019468 - 0: The maximum resident set size (KB) = 974568 + 0: The total amount of wall time = 865.792824 + 0: The maximum resident set size (KB) = 974516 Test 118 conus13km_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_debug_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 500.947558 - 0: The maximum resident set size (KB) = 981356 + 0: The total amount of wall time = 492.365686 + 0: The maximum resident set size (KB) = 981300 Test 119 conus13km_debug_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 875.321203 - 0: The maximum resident set size (KB) = 1042216 + 0: The total amount of wall time = 866.403194 + 0: The maximum resident set size (KB) = 1042388 Test 120 conus13km_radar_tten_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/rap_control_dyn64_phy32_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.093871 - 0: The maximum resident set size (KB) = 884972 + 0: The total amount of wall time = 281.845987 + 0: The maximum resident set size (KB) = 884736 Test 121 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.876665 - 0: The maximum resident set size (KB) = 880280 + 0: The total amount of wall time = 230.297232 + 0: The maximum resident set size (KB) = 879076 Test 122 hafs_regional_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 280.183262 - 0: The maximum resident set size (KB) = 1208376 + 0: The total amount of wall time = 271.825681 + 0: The maximum resident set size (KB) = 1205576 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 422.476191 - 0: The maximum resident set size (KB) = 907632 + 0: The total amount of wall time = 412.386528 + 0: The maximum resident set size (KB) = 907636 Test 124 hafs_regional_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,14 +4165,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 910.991934 - 0: The maximum resident set size (KB) = 937432 + 0: The total amount of wall time = 904.463528 + 0: The maximum resident set size (KB) = 930232 Test 125 hafs_regional_atm_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,14 +4183,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1019.406071 - 0: The maximum resident set size (KB) = 959736 + 0: The total amount of wall time = 1010.743875 + 0: The maximum resident set size (KB) = 961436 Test 126 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 338.911686 - 0: The maximum resident set size (KB) = 428040 + 0: The total amount of wall time = 332.023994 + 0: The maximum resident set size (KB) = 428028 Test 127 hafs_regional_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4241,14 +4241,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 413.723871 - 0: The maximum resident set size (KB) = 299304 + 0: The total amount of wall time = 384.419067 + 0: The maximum resident set size (KB) = 298300 Test 128 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4257,14 +4257,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 387.088369 - 0: The maximum resident set size (KB) = 438528 + 0: The total amount of wall time = 379.700184 + 0: The maximum resident set size (KB) = 438476 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.439732 - 0: The maximum resident set size (KB) = 233784 + 0: The total amount of wall time = 152.040844 + 0: The maximum resident set size (KB) = 233704 Test 130 hafs_global_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 241.985608 - 0: The maximum resident set size (KB) = 216212 + 0: The total amount of wall time = 196.739433 + 0: The maximum resident set size (KB) = 216140 Test 131 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 435.418871 - 0: The maximum resident set size (KB) = 258452 + 0: The total amount of wall time = 426.780938 + 0: The maximum resident set size (KB) = 259460 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4543,14 +4543,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 652.164862 - 0: The maximum resident set size (KB) = 257292 + 0: The total amount of wall time = 543.203537 + 0: The maximum resident set size (KB) = 257400 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4559,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.888451 - 0: The maximum resident set size (KB) = 447280 + 0: The total amount of wall time = 212.577127 + 0: The maximum resident set size (KB) = 447116 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4588,14 +4588,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 202.906398 - 0: The maximum resident set size (KB) = 444644 + 0: The total amount of wall time = 196.775675 + 0: The maximum resident set size (KB) = 445424 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4617,14 +4617,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.247301 - 0: The maximum resident set size (KB) = 331936 + 0: The total amount of wall time = 242.195263 + 0: The maximum resident set size (KB) = 331684 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4633,42 +4633,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 256.738000 - 0: The maximum resident set size (KB) = 475776 + 0: The total amount of wall time = 245.746452 + 0: The maximum resident set size (KB) = 475784 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.777361 - 0: The maximum resident set size (KB) = 254488 + 0: The total amount of wall time = 58.006885 + 0: The maximum resident set size (KB) = 254120 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 762.000154 - 0: The maximum resident set size (KB) = 485028 + 0: The total amount of wall time = 754.264424 + 0: The maximum resident set size (KB) = 475396 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 641.920782 - 0: The maximum resident set size (KB) = 522976 + 0: The total amount of wall time = 632.838963 + 0: The maximum resident set size (KB) = 527324 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 369.095251 - 0: The maximum resident set size (KB) = 903572 + 0: The total amount of wall time = 350.192796 + 0: The maximum resident set size (KB) = 901448 Test 141 hafs_regional_docn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,131 +4709,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 368.034004 - 0: The maximum resident set size (KB) = 890720 + 0: The total amount of wall time = 352.017322 + 0: The maximum resident set size (KB) = 884108 Test 142 hafs_regional_docn_oisst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1184.014446 - 0: The maximum resident set size (KB) = 800888 + 0: The total amount of wall time = 1190.212973 + 0: The maximum resident set size (KB) = 848392 Test 143 hafs_regional_datm_cdeps_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.533335 - 0: The maximum resident set size (KB) = 731416 + 0: The total amount of wall time = 165.377160 + 0: The maximum resident set size (KB) = 719724 Test 144 datm_cdeps_control_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_restart_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 99.733547 - 0: The maximum resident set size (KB) = 718816 + 0: The total amount of wall time = 98.652108 + 0: The maximum resident set size (KB) = 718936 Test 145 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.497734 - 0: The maximum resident set size (KB) = 610944 + 0: The total amount of wall time = 156.210595 + 0: The maximum resident set size (KB) = 613552 Test 146 datm_cdeps_control_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.611235 - 0: The maximum resident set size (KB) = 613280 + 0: The total amount of wall time = 156.648032 + 0: The maximum resident set size (KB) = 617352 Test 147 datm_cdeps_iau_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.274671 - 0: The maximum resident set size (KB) = 610892 + 0: The total amount of wall time = 157.292897 + 0: The maximum resident set size (KB) = 610784 Test 148 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.306669 - 0: The maximum resident set size (KB) = 731412 + 0: The total amount of wall time = 162.623221 + 0: The maximum resident set size (KB) = 719836 Test 149 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.118471 - 0: The maximum resident set size (KB) = 731440 + 0: The total amount of wall time = 162.196268 + 0: The maximum resident set size (KB) = 731404 Test 150 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.280120 - 0: The maximum resident set size (KB) = 613536 + 0: The total amount of wall time = 154.197320 + 0: The maximum resident set size (KB) = 613244 Test 151 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4842,14 +4842,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 389.219288 - 0: The maximum resident set size (KB) = 514608 + 0: The total amount of wall time = 379.563958 + 0: The maximum resident set size (KB) = 512316 Test 152 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4858,77 +4858,77 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 389.383046 - 0: The maximum resident set size (KB) = 495340 + 0: The total amount of wall time = 382.277599 + 0: The maximum resident set size (KB) = 495304 Test 153 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_multiple_files_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.924332 - 0: The maximum resident set size (KB) = 731416 + 0: The total amount of wall time = 166.755943 + 0: The maximum resident set size (KB) = 731516 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 270.633345 - 0: The maximum resident set size (KB) = 1962828 + 0: The total amount of wall time = 266.746026 + 0: The maximum resident set size (KB) = 1964280 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 277.764452 - 0: The maximum resident set size (KB) = 1965432 + 0: The total amount of wall time = 264.006858 + 0: The maximum resident set size (KB) = 1965176 Test 156 datm_cdeps_gfs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_debug_cfsr_intel Checking test 157 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 369.658908 - 0: The maximum resident set size (KB) = 703196 + 0: The total amount of wall time = 368.190633 + 0: The maximum resident set size (KB) = 714664 Test 157 datm_cdeps_debug_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.470389 - 0: The maximum resident set size (KB) = 731316 + 0: The total amount of wall time = 173.589978 + 0: The maximum resident set size (KB) = 731324 Test 158 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4937,14 +4937,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.985352 - 0: The maximum resident set size (KB) = 118156 + 0: The total amount of wall time = 6.625620 + 0: The maximum resident set size (KB) = 118200 Test 159 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4953,14 +4953,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.303542 - 0: The maximum resident set size (KB) = 116112 + 0: The total amount of wall time = 11.174647 + 0: The maximum resident set size (KB) = 116076 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5045,14 +5045,14 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.516350 - 0: The maximum resident set size (KB) = 1454840 + 0: The total amount of wall time = 215.049795 + 0: The maximum resident set size (KB) = 1454928 Test 161 control_p8_atmlnd_sbs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5095,14 +5095,14 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.610595 - 0: The maximum resident set size (KB) = 1437540 + 0: The total amount of wall time = 93.314104 + 0: The maximum resident set size (KB) = 1437340 Test 162 atmwav_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5146,14 +5146,14 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.661511 - 0: The maximum resident set size (KB) = 461124 + 0: The total amount of wall time = 89.606425 + 0: The maximum resident set size (KB) = 461080 Test 163 control_atmwav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5197,14 +5197,14 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 245.991822 - 0: The maximum resident set size (KB) = 1481004 + 0: The total amount of wall time = 235.271237 + 0: The maximum resident set size (KB) = 1482304 Test 164 atmaero_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5248,14 +5248,14 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.586715 - 0: The maximum resident set size (KB) = 1523532 + 0: The total amount of wall time = 290.776983 + 0: The maximum resident set size (KB) = 1524572 Test 165 atmaero_control_p8_rad_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5299,14 +5299,14 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 296.525950 - 0: The maximum resident set size (KB) = 1532224 + 0: The total amount of wall time = 298.514752 + 0: The maximum resident set size (KB) = 1532168 Test 166 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5322,15 +5322,15 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 636.801364 - 0: The maximum resident set size (KB) = 5073608 + 0: The total amount of wall time = 636.423430 + 0: The maximum resident set size (KB) = 5047560 Test 167 regional_atmaq_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_6189/regional_atmaq_faster_intel -Checking test 168 regional_atmaq_faster_intel results .... +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_25675/regional_atmaq_faster_intel +Checking test 001 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5345,12 +5345,12 @@ Checking test 168 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 640.380538 - 0: The maximum resident set size (KB) = 5046744 + 0: The total amount of wall time = 613.253550 + 0: The maximum resident set size (KB) = 5040860 Test 168 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sat 16 Sep 2023 02:44:59 AM EDT -Elapsed time: 06h:40m:02s. Have a nice day! +Wed 20 Sep 2023 10:55:11 AM EDT +Elapsed time: 00h:27m:54s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 9163ea66ea..af3f98f0d8 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ -Sun Sep 17 20:23:54 UTC 2023 +Wed Sep 20 01:02:43 UTC 2023 Start Regression test -Testing UFSWM Hash: 564ce02c11af427e182ad1176cf7f4c0f5347f47 +Testing UFSWM Hash: 15c7fde52750a00920dc4a4b429bab4a1890ca12 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,60 +15,60 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 541 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 528 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 163 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 598 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 241 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 593 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 261 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 189 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 575 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 199 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 604 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 643 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn64_phy32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 262 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 544 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 523 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 536 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 554 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 559 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 108 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 574 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 195 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 600 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 649 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_intel elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 655 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 128 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 972 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 248 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 659 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_aoflux_intel elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 218 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 618 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 630 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 233 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 893 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 91 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 919 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 132 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 234 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 254 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.800004 - 0: The maximum resident set size (KB) = 3093444 + 0: The total amount of wall time = 311.102344 + 0: The maximum resident set size (KB) = 3144872 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 216.507829 - 0: The maximum resident set size (KB) = 1703052 + 0: The total amount of wall time = 215.462670 + 0: The maximum resident set size (KB) = 1697572 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.421805 - 0: The maximum resident set size (KB) = 3182104 + 0: The total amount of wall time = 338.996064 + 0: The maximum resident set size (KB) = 3195220 Test 003 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.846693 - 0: The maximum resident set size (KB) = 3187368 + 0: The total amount of wall time = 192.213966 + 0: The maximum resident set size (KB) = 3246684 Test 004 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.877893 - 0: The maximum resident set size (KB) = 3194672 + 0: The total amount of wall time = 340.884458 + 0: The maximum resident set size (KB) = 3156752 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.953256 - 0: The maximum resident set size (KB) = 3074444 + 0: The total amount of wall time = 201.124419 + 0: The maximum resident set size (KB) = 3085804 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.015884 - 0: The maximum resident set size (KB) = 3540120 + 0: The total amount of wall time = 322.663515 + 0: The maximum resident set size (KB) = 3542328 Test 007 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.213921 - 0: The maximum resident set size (KB) = 3179480 + 0: The total amount of wall time = 336.829526 + 0: The maximum resident set size (KB) = 3190276 Test 008 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.246098 - 0: The maximum resident set size (KB) = 3039228 + 0: The total amount of wall time = 279.351875 + 0: The maximum resident set size (KB) = 3044252 Test 009 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.306582 - 0: The maximum resident set size (KB) = 3180932 + 0: The total amount of wall time = 340.656243 + 0: The maximum resident set size (KB) = 3198932 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 572.901966 - 0: The maximum resident set size (KB) = 3357824 + 0: The total amount of wall time = 576.217580 + 0: The maximum resident set size (KB) = 3430700 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 358.870450 - 0: The maximum resident set size (KB) = 3610656 + 0: The total amount of wall time = 370.363578 + 0: The maximum resident set size (KB) = 3612276 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 627.063121 - 0: The maximum resident set size (KB) = 4111184 + 0: The total amount of wall time = 653.470360 + 0: The maximum resident set size (KB) = 4114132 Test 013 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 453.494650 - 0: The maximum resident set size (KB) = 4352372 + 0: The total amount of wall time = 543.931614 + 0: The maximum resident set size (KB) = 4355696 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.751022 - 0: The maximum resident set size (KB) = 1708828 + 0: The total amount of wall time = 262.013411 + 0: The maximum resident set size (KB) = 1723716 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.272781 - 0: The maximum resident set size (KB) = 1764712 + 0: The total amount of wall time = 257.267051 + 0: The maximum resident set size (KB) = 1770672 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 516.116831 - 0: The maximum resident set size (KB) = 3238340 + 0: The total amount of wall time = 511.714788 + 0: The maximum resident set size (KB) = 3240036 Test 017 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.560885 - 0: The maximum resident set size (KB) = 1761188 + 0: The total amount of wall time = 350.432351 + 0: The maximum resident set size (KB) = 1739800 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.645465 - 0: The maximum resident set size (KB) = 1766244 + 0: The total amount of wall time = 261.119539 + 0: The maximum resident set size (KB) = 1763124 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 589.439716 - 0: The maximum resident set size (KB) = 2824872 + 0: The total amount of wall time = 583.392555 + 0: The maximum resident set size (KB) = 2815308 Test 020 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.777369 - 0: The maximum resident set size (KB) = 3181860 + 0: The total amount of wall time = 315.556499 + 0: The maximum resident set size (KB) = 3198108 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1199.347993 - 0: The maximum resident set size (KB) = 1714212 + 0: The total amount of wall time = 1200.114005 + 0: The maximum resident set size (KB) = 1766356 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 562.276924 - 0: The maximum resident set size (KB) = 1151460 + 0: The total amount of wall time = 585.309475 + 0: The maximum resident set size (KB) = 1135176 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1090.093243 - 0: The maximum resident set size (KB) = 1648044 + 0: The total amount of wall time = 1087.629035 + 0: The maximum resident set size (KB) = 1653620 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1395.115329 - 0: The maximum resident set size (KB) = 1705452 + 0: The total amount of wall time = 1386.123174 + 0: The maximum resident set size (KB) = 1702324 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.553516 - 0: The maximum resident set size (KB) = 693528 + 0: The total amount of wall time = 186.112238 + 0: The maximum resident set size (KB) = 692096 Test 026 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,36 +1719,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.516973 - 0: The maximum resident set size (KB) = 640112 + 0: The total amount of wall time = 129.838652 + 0: The maximum resident set size (KB) = 634820 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.650201 - 0: The maximum resident set size (KB) = 642012 + 0: The total amount of wall time = 136.972469 + 0: The maximum resident set size (KB) = 645928 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,16 +1759,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.655589 - 0: The maximum resident set size (KB) = 642404 + 0: The total amount of wall time = 132.916780 + 0: The maximum resident set size (KB) = 641624 Test 029 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.906488 - 0: The maximum resident set size (KB) = 644360 + 0: The total amount of wall time = 135.453820 + 0: The maximum resident set size (KB) = 640260 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 370.205356 -0: The maximum resident set size (KB) = 835220 +0: The total amount of wall time = 369.103728 +0: The maximum resident set size (KB) = 834752 Test 031 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.703341 - 0: The maximum resident set size (KB) = 786084 + 0: The total amount of wall time = 523.088419 + 0: The maximum resident set size (KB) = 781432 Test 032 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.310307 - 0: The maximum resident set size (KB) = 1385548 + 0: The total amount of wall time = 521.381805 + 0: The maximum resident set size (KB) = 1392776 Test 033 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 452.373320 - 0: The maximum resident set size (KB) = 1488908 + 0: The total amount of wall time = 459.707516 + 0: The maximum resident set size (KB) = 1494592 Test 034 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.650417 - 0: The maximum resident set size (KB) = 642088 + 0: The total amount of wall time = 87.795153 + 0: The maximum resident set size (KB) = 648752 Test 035 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.862954 - 0: The maximum resident set size (KB) = 555968 + 0: The total amount of wall time = 48.239631 + 0: The maximum resident set size (KB) = 553448 Test 036 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.466172 - 0: The maximum resident set size (KB) = 639468 + 0: The total amount of wall time = 80.983839 + 0: The maximum resident set size (KB) = 648828 Test 037 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.313734 - 0: The maximum resident set size (KB) = 639744 + 0: The total amount of wall time = 134.225048 + 0: The maximum resident set size (KB) = 635260 Test 038 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.675277 - 0: The maximum resident set size (KB) = 641288 + 0: The total amount of wall time = 136.457062 + 0: The maximum resident set size (KB) = 635144 Test 039 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.938225 - 0: The maximum resident set size (KB) = 1595436 + 0: The total amount of wall time = 167.328995 + 0: The maximum resident set size (KB) = 1611848 Test 040 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.892205 - 0: The maximum resident set size (KB) = 889188 + 0: The total amount of wall time = 88.835253 + 0: The maximum resident set size (KB) = 929280 Test 041 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.758401 - 0: The maximum resident set size (KB) = 1600572 + 0: The total amount of wall time = 167.673793 + 0: The maximum resident set size (KB) = 1617532 Test 042 control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.450778 - 0: The maximum resident set size (KB) = 875616 + 0: The total amount of wall time = 89.374135 + 0: The maximum resident set size (KB) = 871540 Test 043 control_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 180.243447 - 0: The maximum resident set size (KB) = 1549924 + 0: The total amount of wall time = 173.756767 + 0: The maximum resident set size (KB) = 1598000 Test 044 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 159.353200 - 0: The maximum resident set size (KB) = 1702864 + 0: The total amount of wall time = 157.600011 + 0: The maximum resident set size (KB) = 1688576 Test 045 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.818400 - 0: The maximum resident set size (KB) = 1583436 + 0: The total amount of wall time = 312.063999 + 0: The maximum resident set size (KB) = 1612564 Test 046 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 226.819039 - 0: The maximum resident set size (KB) = 1665716 + 0: The total amount of wall time = 224.113112 + 0: The maximum resident set size (KB) = 1669092 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.403304 - 0: The maximum resident set size (KB) = 1602052 + 0: The total amount of wall time = 172.152874 + 0: The maximum resident set size (KB) = 1611756 Test 048 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.500520 - 0: The maximum resident set size (KB) = 1616392 + 0: The total amount of wall time = 190.416868 + 0: The maximum resident set size (KB) = 1621412 Test 049 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.830371 - 0: The maximum resident set size (KB) = 1092332 + 0: The total amount of wall time = 298.009949 + 0: The maximum resident set size (KB) = 1090388 Test 050 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.229278 - 0: The maximum resident set size (KB) = 1083820 + 0: The total amount of wall time = 150.182659 + 0: The maximum resident set size (KB) = 1083284 Test 051 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.540318 - 0: The maximum resident set size (KB) = 1093856 + 0: The total amount of wall time = 291.267754 + 0: The maximum resident set size (KB) = 1100152 Test 052 regional_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.690241 - 0: The maximum resident set size (KB) = 1083300 + 0: The total amount of wall time = 149.979894 + 0: The maximum resident set size (KB) = 1088144 Test 053 regional_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.714716 - 0: The maximum resident set size (KB) = 1090432 + 0: The total amount of wall time = 306.440986 + 0: The maximum resident set size (KB) = 1092992 Test 054 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 187.393459 - 0: The maximum resident set size (KB) = 1034092 + 0: The total amount of wall time = 176.527160 + 0: The maximum resident set size (KB) = 1084120 Test 055 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 288.626394 - 0: The maximum resident set size (KB) = 1366904 + 0: The total amount of wall time = 288.672695 + 0: The maximum resident set size (KB) = 1362536 Test 056 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.483665 - 0: The maximum resident set size (KB) = 1065744 + 0: The total amount of wall time = 288.303738 + 0: The maximum resident set size (KB) = 1071732 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.689253 - 0: The maximum resident set size (KB) = 1096116 + 0: The total amount of wall time = 291.595510 + 0: The maximum resident set size (KB) = 1098252 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.751514 - 0: The maximum resident set size (KB) = 917800 + 0: The total amount of wall time = 370.070200 + 0: The maximum resident set size (KB) = 923092 Test 059 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 446.663202 - 0: The maximum resident set size (KB) = 1239700 + 0: The total amount of wall time = 447.147272 + 0: The maximum resident set size (KB) = 1234080 Test 060 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 230.778018 - 0: The maximum resident set size (KB) = 1203416 + 0: The total amount of wall time = 229.995818 + 0: The maximum resident set size (KB) = 1197952 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 463.727445 - 0: The maximum resident set size (KB) = 1167360 + 0: The total amount of wall time = 466.050454 + 0: The maximum resident set size (KB) = 1159004 Test 062 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 414.812066 - 0: The maximum resident set size (KB) = 1323984 + 0: The total amount of wall time = 418.263020 + 0: The maximum resident set size (KB) = 1294536 Test 063 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 225.783695 - 0: The maximum resident set size (KB) = 1137216 + 0: The total amount of wall time = 226.995914 + 0: The maximum resident set size (KB) = 1136016 Test 064 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 446.608478 - 0: The maximum resident set size (KB) = 1240384 + 0: The total amount of wall time = 445.639746 + 0: The maximum resident set size (KB) = 1231332 Test 065 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 469.441174 - 0: The maximum resident set size (KB) = 1169096 + 0: The total amount of wall time = 482.056144 + 0: The maximum resident set size (KB) = 1171600 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 330.203736 - 0: The maximum resident set size (KB) = 1164492 + 0: The total amount of wall time = 332.170253 + 0: The maximum resident set size (KB) = 1168732 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.652938 - 0: The maximum resident set size (KB) = 1186704 + 0: The total amount of wall time = 432.920914 + 0: The maximum resident set size (KB) = 1193764 Test 068 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 427.993043 - 0: The maximum resident set size (KB) = 1076756 + 0: The total amount of wall time = 428.587579 + 0: The maximum resident set size (KB) = 1078224 Test 069 hrrr_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 445.706639 - 0: The maximum resident set size (KB) = 1113944 + 0: The total amount of wall time = 449.496425 + 0: The maximum resident set size (KB) = 1111264 Test 070 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 394.584160 - 0: The maximum resident set size (KB) = 1130004 + 0: The total amount of wall time = 395.845277 + 0: The maximum resident set size (KB) = 1133808 Test 071 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 319.356971 - 0: The maximum resident set size (KB) = 1121576 + 0: The total amount of wall time = 321.680363 + 0: The maximum resident set size (KB) = 1124872 Test 072 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.558469 - 0: The maximum resident set size (KB) = 1028304 + 0: The total amount of wall time = 324.763067 + 0: The maximum resident set size (KB) = 1033800 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 441.087176 - 0: The maximum resident set size (KB) = 1194136 + 0: The total amount of wall time = 439.101278 + 0: The maximum resident set size (KB) = 1201588 Test 074 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.004863 - 0: The maximum resident set size (KB) = 800840 + 0: The total amount of wall time = 522.966388 + 0: The maximum resident set size (KB) = 800028 Test 075 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 508.179047 - 0: The maximum resident set size (KB) = 916008 + 0: The total amount of wall time = 510.883154 + 0: The maximum resident set size (KB) = 914916 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 448.868023 - 0: The maximum resident set size (KB) = 1229832 + 0: The total amount of wall time = 449.325781 + 0: The maximum resident set size (KB) = 1239440 Test 077 hrrr_gf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3486,14 +3486,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.515566 - 0: The maximum resident set size (KB) = 1197040 + 0: The total amount of wall time = 450.922215 + 0: The maximum resident set size (KB) = 1236180 Test 078 hrrr_c3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.606114 - 0: The maximum resident set size (KB) = 822308 + 0: The total amount of wall time = 341.154275 + 0: The maximum resident set size (KB) = 818808 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3522,14 +3522,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.145499 - 0: The maximum resident set size (KB) = 814240 + 0: The total amount of wall time = 337.919702 + 0: The maximum resident set size (KB) = 789236 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3540,26 +3540,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.009561 - 0: The maximum resident set size (KB) = 812876 + 0: The total amount of wall time = 186.621920 + 0: The maximum resident set size (KB) = 811576 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.920599 - 0: The maximum resident set size (KB) = 706080 + 0: The total amount of wall time = 112.783865 + 0: The maximum resident set size (KB) = 701616 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.622294 - 0: The maximum resident set size (KB) = 1599168 + 0: The total amount of wall time = 154.956321 + 0: The maximum resident set size (KB) = 1607668 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.264115 - 0: The maximum resident set size (KB) = 1091816 + 0: The total amount of wall time = 264.220475 + 0: The maximum resident set size (KB) = 1095596 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3658,348 +3658,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.506127 - 0: The maximum resident set size (KB) = 800812 + 0: The total amount of wall time = 147.620269 + 0: The maximum resident set size (KB) = 801560 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.312790 - 0: The maximum resident set size (KB) = 799100 + 0: The total amount of wall time = 147.986775 + 0: The maximum resident set size (KB) = 801856 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.764213 - 0: The maximum resident set size (KB) = 806468 + 0: The total amount of wall time = 164.758749 + 0: The maximum resident set size (KB) = 804408 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.539389 - 0: The maximum resident set size (KB) = 804408 + 0: The total amount of wall time = 147.394274 + 0: The maximum resident set size (KB) = 801680 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.455363 - 0: The maximum resident set size (KB) = 846924 + 0: The total amount of wall time = 229.835747 + 0: The maximum resident set size (KB) = 849804 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.960114 - 0: The maximum resident set size (KB) = 851736 + 0: The total amount of wall time = 221.364953 + 0: The maximum resident set size (KB) = 843536 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.916703 - 0: The maximum resident set size (KB) = 814720 + 0: The total amount of wall time = 145.206177 + 0: The maximum resident set size (KB) = 813820 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.850589 - 0: The maximum resident set size (KB) = 860040 + 0: The total amount of wall time = 155.696079 + 0: The maximum resident set size (KB) = 857796 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.708647 - 0: The maximum resident set size (KB) = 1630500 + 0: The total amount of wall time = 168.354781 + 0: The maximum resident set size (KB) = 1623352 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 957.115476 - 0: The maximum resident set size (KB) = 1108940 + 0: The total amount of wall time = 972.560324 + 0: The maximum resident set size (KB) = 1096636 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.184721 - 0: The maximum resident set size (KB) = 1183260 + 0: The total amount of wall time = 273.350421 + 0: The maximum resident set size (KB) = 1178668 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.978652 - 0: The maximum resident set size (KB) = 1178304 + 0: The total amount of wall time = 267.332061 + 0: The maximum resident set size (KB) = 1191368 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.435111 - 0: The maximum resident set size (KB) = 1180708 + 0: The total amount of wall time = 269.310540 + 0: The maximum resident set size (KB) = 1188560 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.528153 - 0: The maximum resident set size (KB) = 1264312 + 0: The total amount of wall time = 283.497249 + 0: The maximum resident set size (KB) = 1259608 Test 098 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.366375 - 0: The maximum resident set size (KB) = 1181712 + 0: The total amount of wall time = 278.602844 + 0: The maximum resident set size (KB) = 1183840 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.516241 - 0: The maximum resident set size (KB) = 1183720 + 0: The total amount of wall time = 276.372203 + 0: The maximum resident set size (KB) = 1189140 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.714467 - 0: The maximum resident set size (KB) = 1192764 + 0: The total amount of wall time = 276.756670 + 0: The maximum resident set size (KB) = 1178252 Test 101 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.912010 - 0: The maximum resident set size (KB) = 1187372 + 0: The total amount of wall time = 271.417339 + 0: The maximum resident set size (KB) = 1190144 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.896724 - 0: The maximum resident set size (KB) = 1193588 + 0: The total amount of wall time = 264.260161 + 0: The maximum resident set size (KB) = 1186128 Test 103 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.024532 - 0: The maximum resident set size (KB) = 1188532 + 0: The total amount of wall time = 270.106148 + 0: The maximum resident set size (KB) = 1191072 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.554327 - 0: The maximum resident set size (KB) = 1180452 + 0: The total amount of wall time = 447.048107 + 0: The maximum resident set size (KB) = 1192428 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.463482 - 0: The maximum resident set size (KB) = 1180308 + 0: The total amount of wall time = 268.231002 + 0: The maximum resident set size (KB) = 1183788 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 326.977206 - 0: The maximum resident set size (KB) = 1187680 + 0: The total amount of wall time = 332.657927 + 0: The maximum resident set size (KB) = 1180416 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.653079 - 0: The maximum resident set size (KB) = 1185336 + 0: The total amount of wall time = 274.274942 + 0: The maximum resident set size (KB) = 1184044 Test 108 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.469248 - 0: The maximum resident set size (KB) = 592436 + 0: The total amount of wall time = 280.541531 + 0: The maximum resident set size (KB) = 586224 Test 109 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +4010,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 211.890142 - 0: The maximum resident set size (KB) = 1101964 + 0: The total amount of wall time = 219.037195 + 0: The maximum resident set size (KB) = 1104932 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 368.391742 - 0: The maximum resident set size (KB) = 1107784 + 0: The total amount of wall time = 370.925293 + 0: The maximum resident set size (KB) = 1105820 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 189.631268 - 0: The maximum resident set size (KB) = 1025556 + 0: The total amount of wall time = 190.996455 + 0: The maximum resident set size (KB) = 1031048 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 189.990748 - 0: The maximum resident set size (KB) = 982064 + 0: The total amount of wall time = 192.680965 + 0: The maximum resident set size (KB) = 981740 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 345.619582 - 0: The maximum resident set size (KB) = 1126756 + 0: The total amount of wall time = 354.396239 + 0: The maximum resident set size (KB) = 1131668 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.861892 - 0: The maximum resident set size (KB) = 967460 + 0: The total amount of wall time = 175.046883 + 0: The maximum resident set size (KB) = 971088 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 199.607888 - 0: The maximum resident set size (KB) = 969440 + 0: The total amount of wall time = 201.663746 + 0: The maximum resident set size (KB) = 973820 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,42 +4380,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.222593 - 0: The maximum resident set size (KB) = 1050152 + 0: The total amount of wall time = 273.560744 + 0: The maximum resident set size (KB) = 1041736 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.660195 - 0: The maximum resident set size (KB) = 923812 + 0: The total amount of wall time = 99.679398 + 0: The maximum resident set size (KB) = 940880 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.444274 - 0: The maximum resident set size (KB) = 891976 + 0: The total amount of wall time = 101.611416 + 0: The maximum resident set size (KB) = 883744 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4431,40 +4431,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 110.746128 - 0: The maximum resident set size (KB) = 1252752 + 0: The total amount of wall time = 111.870238 + 0: The maximum resident set size (KB) = 1253172 Test 120 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 44.933699 - 0: The maximum resident set size (KB) = 1169168 + 0: The total amount of wall time = 44.318534 + 0: The maximum resident set size (KB) = 1168228 Test 121 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.569315 - 0: The maximum resident set size (KB) = 1188692 + 0: The total amount of wall time = 63.500540 + 0: The maximum resident set size (KB) = 1188548 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4511,123 +4511,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 242.548601 - 0: The maximum resident set size (KB) = 1099660 + 0: The total amount of wall time = 243.040379 + 0: The maximum resident set size (KB) = 1097388 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.259133 - 0: The maximum resident set size (KB) = 1067584 + 0: The total amount of wall time = 265.525842 + 0: The maximum resident set size (KB) = 1070308 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.734873 - 0: The maximum resident set size (KB) = 1062360 + 0: The total amount of wall time = 260.950498 + 0: The maximum resident set size (KB) = 1069192 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 813.398643 - 0: The maximum resident set size (KB) = 1264360 + 0: The total amount of wall time = 822.512732 + 0: The maximum resident set size (KB) = 1267740 Test 126 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 462.129696 - 0: The maximum resident set size (KB) = 1189668 + 0: The total amount of wall time = 457.538048 + 0: The maximum resident set size (KB) = 1199940 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 821.713089 - 0: The maximum resident set size (KB) = 1332856 + 0: The total amount of wall time = 827.081012 + 0: The maximum resident set size (KB) = 1326364 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.161526 - 0: The maximum resident set size (KB) = 1101064 + 0: The total amount of wall time = 271.961507 + 0: The maximum resident set size (KB) = 1111876 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 214.123877 - 0: The maximum resident set size (KB) = 1240156 + 0: The total amount of wall time = 231.238123 + 0: The maximum resident set size (KB) = 1238460 Test 130 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 312.065629 - 0: The maximum resident set size (KB) = 1582916 + 0: The total amount of wall time = 362.267084 + 0: The maximum resident set size (KB) = 1570920 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.087384 - 0: The maximum resident set size (KB) = 1416292 + 0: The total amount of wall time = 370.246700 + 0: The maximum resident set size (KB) = 1411008 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4652,14 +4652,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 745.396229 - 0: The maximum resident set size (KB) = 1433880 + 0: The total amount of wall time = 736.977679 + 0: The maximum resident set size (KB) = 1443120 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4670,14 +4670,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 838.425186 - 0: The maximum resident set size (KB) = 1466816 + 0: The total amount of wall time = 844.705119 + 0: The maximum resident set size (KB) = 1466972 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4699,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.870970 - 0: The maximum resident set size (KB) = 657144 + 0: The total amount of wall time = 296.599640 + 0: The maximum resident set size (KB) = 657808 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4728,14 +4728,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 303.417453 - 0: The maximum resident set size (KB) = 466964 + 0: The total amount of wall time = 306.686506 + 0: The maximum resident set size (KB) = 499664 Test 136 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4744,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 335.601685 - 0: The maximum resident set size (KB) = 659496 + 0: The total amount of wall time = 341.413482 + 0: The maximum resident set size (KB) = 666788 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4798,14 +4798,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 136.684006 - 0: The maximum resident set size (KB) = 399276 + 0: The total amount of wall time = 138.899068 + 0: The maximum resident set size (KB) = 401968 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4852,14 +4852,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 140.459715 - 0: The maximum resident set size (KB) = 375092 + 0: The total amount of wall time = 145.727957 + 0: The maximum resident set size (KB) = 348804 Test 139 hafs_global_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4941,14 +4941,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 381.654270 - 0: The maximum resident set size (KB) = 476548 + 0: The total amount of wall time = 388.129371 + 0: The maximum resident set size (KB) = 478808 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_multiple_4nests_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 405.204057 - 0: The maximum resident set size (KB) = 471792 + 0: The total amount of wall time = 404.056148 + 0: The maximum resident set size (KB) = 481408 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5046,14 +5046,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 188.653904 - 0: The maximum resident set size (KB) = 668928 + 0: The total amount of wall time = 193.458659 + 0: The maximum resident set size (KB) = 670268 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,14 +5075,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.272734 - 0: The maximum resident set size (KB) = 669168 + 0: The total amount of wall time = 180.488058 + 0: The maximum resident set size (KB) = 665512 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.697100 - 0: The maximum resident set size (KB) = 533900 + 0: The total amount of wall time = 197.109022 + 0: The maximum resident set size (KB) = 532060 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,42 +5120,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.224388 - 0: The maximum resident set size (KB) = 715292 + 0: The total amount of wall time = 218.819019 + 0: The maximum resident set size (KB) = 716360 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.215402 - 0: The maximum resident set size (KB) = 414388 + 0: The total amount of wall time = 54.776640 + 0: The maximum resident set size (KB) = 415192 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 706.279148 - 0: The maximum resident set size (KB) = 723308 + 0: The total amount of wall time = 715.897811 + 0: The maximum resident set size (KB) = 725756 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 479.691746 - 0: The maximum resident set size (KB) = 804716 + 0: The total amount of wall time = 480.417772 + 0: The maximum resident set size (KB) = 803576 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,14 +5181,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.682469 - 0: The maximum resident set size (KB) = 1404700 + 0: The total amount of wall time = 330.292028 + 0: The maximum resident set size (KB) = 1392076 Test 149 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,131 +5196,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 341.692976 - 0: The maximum resident set size (KB) = 1380528 + 0: The total amount of wall time = 333.666710 + 0: The maximum resident set size (KB) = 1388044 Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 957.935866 - 0: The maximum resident set size (KB) = 1148944 + 0: The total amount of wall time = 996.178251 + 0: The maximum resident set size (KB) = 1154688 Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.918291 - 0: The maximum resident set size (KB) = 1112192 + 0: The total amount of wall time = 155.144831 + 0: The maximum resident set size (KB) = 1117892 Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.898822 - 0: The maximum resident set size (KB) = 1053980 + 0: The total amount of wall time = 92.652401 + 0: The maximum resident set size (KB) = 1070476 Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.437104 - 0: The maximum resident set size (KB) = 1006840 + 0: The total amount of wall time = 149.691887 + 0: The maximum resident set size (KB) = 1004300 Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.459986 - 0: The maximum resident set size (KB) = 999484 + 0: The total amount of wall time = 149.156520 + 0: The maximum resident set size (KB) = 999968 Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.827822 - 0: The maximum resident set size (KB) = 993816 + 0: The total amount of wall time = 150.818506 + 0: The maximum resident set size (KB) = 1006496 Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.537850 - 0: The maximum resident set size (KB) = 1100572 + 0: The total amount of wall time = 157.305040 + 0: The maximum resident set size (KB) = 1117412 Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.750754 - 0: The maximum resident set size (KB) = 1108200 + 0: The total amount of wall time = 154.064243 + 0: The maximum resident set size (KB) = 1103744 Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.943528 - 0: The maximum resident set size (KB) = 996212 + 0: The total amount of wall time = 147.656932 + 0: The maximum resident set size (KB) = 999844 Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.956702 - 0: The maximum resident set size (KB) = 1023144 + 0: The total amount of wall time = 409.309199 + 0: The maximum resident set size (KB) = 1030264 Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5345,77 +5345,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 422.012868 - 0: The maximum resident set size (KB) = 1024468 + 0: The total amount of wall time = 439.719088 + 0: The maximum resident set size (KB) = 1033252 Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.637587 - 0: The maximum resident set size (KB) = 1105560 + 0: The total amount of wall time = 155.824936 + 0: The maximum resident set size (KB) = 1110008 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.541464 - 0: The maximum resident set size (KB) = 2389956 + 0: The total amount of wall time = 224.961452 + 0: The maximum resident set size (KB) = 2413060 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 221.944741 - 0: The maximum resident set size (KB) = 2402496 + 0: The total amount of wall time = 231.336208 + 0: The maximum resident set size (KB) = 2458180 Test 164 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 363.648247 - 0: The maximum resident set size (KB) = 1041856 + 0: The total amount of wall time = 355.592543 + 0: The maximum resident set size (KB) = 1040528 Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.180632 - 0: The maximum resident set size (KB) = 1112244 + 0: The total amount of wall time = 152.317428 + 0: The maximum resident set size (KB) = 1106972 Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5424,14 +5424,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.999369 - 0: The maximum resident set size (KB) = 252768 + 0: The total amount of wall time = 6.475966 + 0: The maximum resident set size (KB) = 252484 Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_lnd_gswp3_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5440,14 +5440,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.063236 - 0: The maximum resident set size (KB) = 254444 + 0: The total amount of wall time = 12.395402 + 0: The maximum resident set size (KB) = 256508 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5532,14 +5532,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 203.755816 - 0: The maximum resident set size (KB) = 1608972 + 0: The total amount of wall time = 203.395960 + 0: The maximum resident set size (KB) = 1617332 Test 169 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5582,14 +5582,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 95.642574 - 0: The maximum resident set size (KB) = 1626632 + 0: The total amount of wall time = 94.508548 + 0: The maximum resident set size (KB) = 1645080 Test 170 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5633,14 +5633,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.892080 - 0: The maximum resident set size (KB) = 664444 + 0: The total amount of wall time = 89.792070 + 0: The maximum resident set size (KB) = 664048 Test 171 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5684,14 +5684,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.504323 - 0: The maximum resident set size (KB) = 3012184 + 0: The total amount of wall time = 228.230129 + 0: The maximum resident set size (KB) = 2996156 Test 172 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5735,14 +5735,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.604543 - 0: The maximum resident set size (KB) = 2995304 + 0: The total amount of wall time = 280.877626 + 0: The maximum resident set size (KB) = 3070028 Test 173 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5786,14 +5786,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.268610 - 0: The maximum resident set size (KB) = 3077560 + 0: The total amount of wall time = 284.641799 + 0: The maximum resident set size (KB) = 3069424 Test 174 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5809,14 +5809,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 638.633394 - 0: The maximum resident set size (KB) = 5403520 + 0: The total amount of wall time = 640.856243 + 0: The maximum resident set size (KB) = 5408124 Test 175 regional_atmaq_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5830,14 +5830,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1185.879171 - 0: The maximum resident set size (KB) = 4879560 + 0: The total amount of wall time = 1191.546790 + 0: The maximum resident set size (KB) = 4875096 Test 176 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5853,14 +5853,14 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 557.447807 - 0: The maximum resident set size (KB) = 5322252 + 0: The total amount of wall time = 555.020811 + 0: The maximum resident set size (KB) = 5429432 Test 177 regional_atmaq_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c48_gnu Checking test 178 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5899,14 +5899,14 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 689.608816 -0: The maximum resident set size (KB) = 732656 +0: The total amount of wall time = 683.968973 +0: The maximum resident set size (KB) = 730856 Test 178 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_gnu Checking test 179 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5917,14 +5917,14 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 230.229815 - 0: The maximum resident set size (KB) = 534764 + 0: The total amount of wall time = 228.166318 + 0: The maximum resident set size (KB) = 540576 Test 179 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_gnu Checking test 180 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5935,14 +5935,14 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 282.915842 - 0: The maximum resident set size (KB) = 546136 + 0: The total amount of wall time = 279.152295 + 0: The maximum resident set size (KB) = 545320 Test 180 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_gnu Checking test 181 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5989,14 +5989,14 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 299.147653 - 0: The maximum resident set size (KB) = 1296632 + 0: The total amount of wall time = 296.783843 + 0: The maximum resident set size (KB) = 1294436 Test 181 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_flake_gnu Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.514950 - 0: The maximum resident set size (KB) = 583328 + 0: The total amount of wall time = 342.115074 + 0: The maximum resident set size (KB) = 582612 Test 182 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_gnu Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 681.561549 - 0: The maximum resident set size (KB) = 852536 + 0: The total amount of wall time = 680.520957 + 0: The maximum resident set size (KB) = 849012 Test 183 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_decomp_gnu Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6115,14 +6115,14 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 687.534932 - 0: The maximum resident set size (KB) = 853372 + 0: The total amount of wall time = 687.287630 + 0: The maximum resident set size (KB) = 844736 Test 184 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_gnu Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6169,14 +6169,14 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 614.885046 - 0: The maximum resident set size (KB) = 958808 + 0: The total amount of wall time = 618.761596 + 0: The maximum resident set size (KB) = 951396 Test 185 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_gnu Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6215,14 +6215,14 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.029478 - 0: The maximum resident set size (KB) = 756688 + 0: The total amount of wall time = 345.118911 + 0: The maximum resident set size (KB) = 756876 Test 186 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_gnu Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6269,14 +6269,14 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 679.587279 - 0: The maximum resident set size (KB) = 848900 + 0: The total amount of wall time = 678.478296 + 0: The maximum resident set size (KB) = 850080 Test 187 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_decomp_gnu Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6323,14 +6323,14 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 688.860610 - 0: The maximum resident set size (KB) = 853016 + 0: The total amount of wall time = 696.922240 + 0: The maximum resident set size (KB) = 843528 Test 188 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_restart_gnu Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6369,14 +6369,14 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 499.041958 - 0: The maximum resident set size (KB) = 765608 + 0: The total amount of wall time = 511.458515 + 0: The maximum resident set size (KB) = 762060 Test 189 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_gnu Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6423,14 +6423,14 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 654.247581 - 0: The maximum resident set size (KB) = 849592 + 0: The total amount of wall time = 657.117147 + 0: The maximum resident set size (KB) = 841328 Test 190 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_gnu Checking test 191 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6477,14 +6477,14 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 657.119655 - 0: The maximum resident set size (KB) = 896300 + 0: The total amount of wall time = 654.992154 + 0: The maximum resident set size (KB) = 851948 Test 191 hrrr_control_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_gnu Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6531,14 +6531,14 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 575.281334 - 0: The maximum resident set size (KB) = 952520 + 0: The total amount of wall time = 580.810941 + 0: The maximum resident set size (KB) = 953556 Test 192 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_gnu Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6585,42 +6585,42 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 658.733312 - 0: The maximum resident set size (KB) = 849812 + 0: The total amount of wall time = 650.432798 + 0: The maximum resident set size (KB) = 845716 Test 193 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_gnu Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 491.498745 - 0: The maximum resident set size (KB) = 712160 + 0: The total amount of wall time = 496.712330 + 0: The maximum resident set size (KB) = 709800 Test 194 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_gnu Checking test 195 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 491.342592 - 0: The maximum resident set size (KB) = 618872 + 0: The total amount of wall time = 494.716711 + 0: The maximum resident set size (KB) = 613420 Test 195 hrrr_control_restart_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_gnu Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6667,14 +6667,14 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 661.618751 - 0: The maximum resident set size (KB) = 845492 + 0: The total amount of wall time = 667.008228 + 0: The maximum resident set size (KB) = 847796 Test 196 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_gf_gnu Checking test 197 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6721,208 +6721,208 @@ Checking test 197 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 683.188839 - 0: The maximum resident set size (KB) = 851024 + 0: The total amount of wall time = 682.033773 + 0: The maximum resident set size (KB) = 843752 Test 197 hrrr_gf_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 85.623809 - 0: The maximum resident set size (KB) = 583812 + 0: The total amount of wall time = 83.550917 + 0: The maximum resident set size (KB) = 546564 Test 198 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 421.200820 - 0: The maximum resident set size (KB) = 819968 + 0: The total amount of wall time = 431.626608 + 0: The maximum resident set size (KB) = 813652 Test 199 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.913888 - 0: The maximum resident set size (KB) = 859676 + 0: The total amount of wall time = 135.653041 + 0: The maximum resident set size (KB) = 861800 Test 200 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.495865 - 0: The maximum resident set size (KB) = 858392 + 0: The total amount of wall time = 134.614036 + 0: The maximum resident set size (KB) = 855268 Test 201 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.916649 - 0: The maximum resident set size (KB) = 944436 + 0: The total amount of wall time = 148.850174 + 0: The maximum resident set size (KB) = 941084 Test 202 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.307296 - 0: The maximum resident set size (KB) = 893960 + 0: The total amount of wall time = 216.343807 + 0: The maximum resident set size (KB) = 896504 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.843941 - 0: The maximum resident set size (KB) = 862244 + 0: The total amount of wall time = 138.257078 + 0: The maximum resident set size (KB) = 893956 Test 204 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.530100 - 0: The maximum resident set size (KB) = 861708 + 0: The total amount of wall time = 137.171262 + 0: The maximum resident set size (KB) = 856596 Test 205 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 78.933751 - 0: The maximum resident set size (KB) = 536504 + 0: The total amount of wall time = 78.419958 + 0: The maximum resident set size (KB) = 537764 Test 206 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.743389 - 0: The maximum resident set size (KB) = 497076 + 0: The total amount of wall time = 122.288223 + 0: The maximum resident set size (KB) = 494888 Test 207 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 89.113759 - 0: The maximum resident set size (KB) = 1283508 + 0: The total amount of wall time = 89.883364 + 0: The maximum resident set size (KB) = 1280944 Test 208 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.968721 - 0: The maximum resident set size (KB) = 868096 + 0: The total amount of wall time = 136.802355 + 0: The maximum resident set size (KB) = 864276 Test 209 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.275233 - 0: The maximum resident set size (KB) = 867868 + 0: The total amount of wall time = 154.780676 + 0: The maximum resident set size (KB) = 894916 Test 210 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_debug_gnu Checking test 211 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 133.768620 - 0: The maximum resident set size (KB) = 286116 + 0: The total amount of wall time = 132.778615 + 0: The maximum resident set size (KB) = 285940 Test 211 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6969,14 +6969,14 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 697.116058 - 0: The maximum resident set size (KB) = 746076 + 0: The total amount of wall time = 697.764019 + 0: The maximum resident set size (KB) = 743964 Test 212 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7023,14 +7023,14 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 351.869937 - 0: The maximum resident set size (KB) = 742940 + 0: The total amount of wall time = 352.922660 + 0: The maximum resident set size (KB) = 738740 Test 213 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7077,14 +7077,14 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 355.998933 - 0: The maximum resident set size (KB) = 754520 + 0: The total amount of wall time = 347.944293 + 0: The maximum resident set size (KB) = 754952 Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7131,14 +7131,14 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 620.356971 - 0: The maximum resident set size (KB) = 788364 + 0: The total amount of wall time = 620.304940 + 0: The maximum resident set size (KB) = 788856 Test 215 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7185,14 +7185,14 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 304.474831 - 0: The maximum resident set size (KB) = 791868 + 0: The total amount of wall time = 307.470355 + 0: The maximum resident set size (KB) = 786344 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7239,14 +7239,14 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 349.312232 - 0: The maximum resident set size (KB) = 743128 + 0: The total amount of wall time = 353.432992 + 0: The maximum resident set size (KB) = 741220 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7285,42 +7285,42 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 524.764685 - 0: The maximum resident set size (KB) = 654196 + 0: The total amount of wall time = 524.547668 + 0: The maximum resident set size (KB) = 650696 Test 218 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.028062 - 0: The maximum resident set size (KB) = 618368 + 0: The total amount of wall time = 183.107626 + 0: The maximum resident set size (KB) = 615604 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_restart_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.503850 - 0: The maximum resident set size (KB) = 578656 + 0: The total amount of wall time = 186.668350 + 0: The maximum resident set size (KB) = 579240 Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_control_gnu Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7336,40 +7336,40 @@ Checking test 221 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 242.490384 - 0: The maximum resident set size (KB) = 952792 + 0: The total amount of wall time = 241.448777 + 0: The maximum resident set size (KB) = 954544 Test 221 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_2threads_gnu Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.283372 - 0: The maximum resident set size (KB) = 998592 + 0: The total amount of wall time = 103.805849 + 0: The maximum resident set size (KB) = 999776 Test 222 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_restart_mismatch_gnu Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.803242 - 0: The maximum resident set size (KB) = 606908 + 0: The total amount of wall time = 126.281489 + 0: The maximum resident set size (KB) = 608028 Test 223 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7416,98 +7416,98 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 406.273038 - 0: The maximum resident set size (KB) = 771196 + 0: The total amount of wall time = 407.102249 + 0: The maximum resident set size (KB) = 766296 Test 224 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_dyn32_phy32_gnu Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.330630 - 0: The maximum resident set size (KB) = 758368 + 0: The total amount of wall time = 137.518793 + 0: The maximum resident set size (KB) = 752464 Test 225 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_dyn32_phy32_gnu Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.662625 - 0: The maximum resident set size (KB) = 756768 + 0: The total amount of wall time = 135.295758 + 0: The maximum resident set size (KB) = 748892 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_gnu Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.681352 - 0: The maximum resident set size (KB) = 969812 + 0: The total amount of wall time = 417.614521 + 0: The maximum resident set size (KB) = 967380 Test 227 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.803294 - 0: The maximum resident set size (KB) = 1006260 + 0: The total amount of wall time = 254.257242 + 0: The maximum resident set size (KB) = 1013028 Test 228 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 423.762934 - 0: The maximum resident set size (KB) = 1034112 + 0: The total amount of wall time = 427.936123 + 0: The maximum resident set size (KB) = 1034132 Test 229 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.867853 - 0: The maximum resident set size (KB) = 770372 + 0: The total amount of wall time = 142.458124 + 0: The maximum resident set size (KB) = 773136 Test 230 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7572,14 +7572,14 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.605176 - 0: The maximum resident set size (KB) = 1511124 + 0: The total amount of wall time = 629.003881 + 0: The maximum resident set size (KB) = 1510124 Test 231 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7641,14 +7641,14 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 404.284428 - 0: The maximum resident set size (KB) = 1392788 + 0: The total amount of wall time = 405.027457 + 0: The maximum resident set size (KB) = 1402496 Test 232 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7701,14 +7701,14 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.310056 - 0: The maximum resident set size (KB) = 1479784 + 0: The total amount of wall time = 370.664799 + 0: The maximum resident set size (KB) = 1515168 Test 233 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7772,14 +7772,14 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1411.058521 - 0: The maximum resident set size (KB) = 1377248 + 0: The total amount of wall time = 1417.975757 + 0: The maximum resident set size (KB) = 1377684 Test 234 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,25 +7831,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 705.969270 - 0: The maximum resident set size (KB) = 1389432 + 0: The total amount of wall time = 711.525487 + 0: The maximum resident set size (KB) = 1390108 Test 235 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_131634/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.374757 - 0: The maximum resident set size (KB) = 686060 + 0: The total amount of wall time = 162.706197 + 0: The maximum resident set size (KB) = 691404 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sun Sep 17 22:39:37 UTC 2023 -Elapsed time: 02h:15m:43s. Have a nice day! +Wed Sep 20 02:39:27 UTC 2023 +Elapsed time: 01h:36m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log new file mode 100644 index 0000000000..31fe46ab8c --- /dev/null +++ b/tests/logs/RegressionTests_hercules.log @@ -0,0 +1,7569 @@ +Tue Sep 19 19:50:53 CDT 2023 +Start Regression test + +Testing UFSWM Hash: 2a52dbceeb2915150b2d513f3dd777f9f29707ab +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) +Compile atm_debug_dyn32_intel elapsed time 216 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 540 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 257 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 401 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 562 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 380 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 378 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 577 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 547 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 120 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 628 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 211 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 633 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 493 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 205 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 554 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 342 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 743 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 125 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 365 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 233 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 709 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 111 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 362 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_mixedmode_intel +Checking test 001 cpld_control_p8_mixedmode_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 435.459548 + 0: The maximum resident set size (KB) = 1888348 + +Test 001 cpld_control_p8_mixedmode_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_gfsv17_intel +Checking test 002 cpld_control_gfsv17_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 459.508624 + 0: The maximum resident set size (KB) = 1730176 + +Test 002 cpld_control_gfsv17_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_intel +Checking test 003 cpld_control_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 456.902754 + 0: The maximum resident set size (KB) = 2045324 + +Test 003 cpld_control_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_p8_intel +Checking test 004 cpld_restart_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 245.432613 + 0: The maximum resident set size (KB) = 1904588 + +Test 004 cpld_restart_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_qr_p8_intel +Checking test 005 cpld_control_qr_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 447.052505 + 0: The maximum resident set size (KB) = 1971676 + +Test 005 cpld_control_qr_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_qr_p8_intel +Checking test 006 cpld_restart_qr_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 246.181115 + 0: The maximum resident set size (KB) = 1549652 + +Test 006 cpld_restart_qr_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_2threads_p8_intel +Checking test 007 cpld_2threads_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 523.942493 + 0: The maximum resident set size (KB) = 2464436 + +Test 007 cpld_2threads_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_decomp_p8_intel +Checking test 008 cpld_decomp_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 434.233962 + 0: The maximum resident set size (KB) = 2035572 + +Test 008 cpld_decomp_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_mpi_p8_intel +Checking test 009 cpld_mpi_p8_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 388.157138 + 0: The maximum resident set size (KB) = 1867572 + +Test 009 cpld_mpi_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_ciceC_p8_intel +Checking test 010 cpld_control_ciceC_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 445.513341 + 0: The maximum resident set size (KB) = 2035472 + +Test 010 cpld_control_ciceC_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_c192_p8_intel +Checking test 011 cpld_control_c192_p8_intel results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 908.472561 + 0: The maximum resident set size (KB) = 2794028 + +Test 011 cpld_control_c192_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_c192_p8_intel +Checking test 012 cpld_restart_c192_p8_intel results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 333.643757 + 0: The maximum resident set size (KB) = 2815468 + +Test 012 cpld_restart_c192_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_bmark_p8_intel +Checking test 013 cpld_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 545.099165 + 0: The maximum resident set size (KB) = 3600676 + +Test 013 cpld_bmark_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_bmark_p8_intel +Checking test 014 cpld_restart_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 372.800203 + 0: The maximum resident set size (KB) = 3508664 + +Test 014 cpld_restart_bmark_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_noaero_p8_intel +Checking test 015 cpld_control_noaero_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 407.358410 + 0: The maximum resident set size (KB) = 1781048 + +Test 015 cpld_control_noaero_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_nowave_noaero_p8_intel +Checking test 016 cpld_control_nowave_noaero_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 242.416007 + 0: The maximum resident set size (KB) = 1824016 + +Test 016 cpld_control_nowave_noaero_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_p8_intel +Checking test 017 cpld_debug_p8_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 435.892426 + 0: The maximum resident set size (KB) = 2022740 + +Test 017 cpld_debug_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_noaero_p8_intel +Checking test 018 cpld_debug_noaero_p8_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 304.353003 + 0: The maximum resident set size (KB) = 1803888 + +Test 018 cpld_debug_noaero_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_noaero_p8_agrid_intel +Checking test 019 cpld_control_noaero_p8_agrid_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 244.195535 + 0: The maximum resident set size (KB) = 1821480 + +Test 019 cpld_control_noaero_p8_agrid_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_c48_intel +Checking test 020 cpld_control_c48_intel results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 447.835994 + 0: The maximum resident set size (KB) = 2832352 + +Test 020 cpld_control_c48_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_faster_intel +Checking test 021 cpld_control_p8_faster_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 432.858429 + 0: The maximum resident set size (KB) = 2053532 + +Test 021 cpld_control_p8_faster_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_flake_intel +Checking test 022 control_flake_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 170.435192 + 0: The maximum resident set size (KB) = 775240 + +Test 022 control_flake_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_intel +Checking test 023 control_CubedSphereGrid_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 123.466812 + 0: The maximum resident set size (KB) = 677672 + +Test 023 control_CubedSphereGrid_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_parallel_intel +Checking test 024 control_CubedSphereGrid_parallel_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1041.076855 + 0: The maximum resident set size (KB) = 698984 + +Test 024 control_CubedSphereGrid_parallel_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_latlon_intel +Checking test 025 control_latlon_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 124.225234 + 0: The maximum resident set size (KB) = 679448 + +Test 025 control_latlon_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wrtGauss_netcdf_parallel_intel +Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 231.538208 + 0: The maximum resident set size (KB) = 678732 + +Test 026 control_wrtGauss_netcdf_parallel_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c48_intel +Checking test 027 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 341.273429 +0: The maximum resident set size (KB) = 819680 + +Test 027 control_c48_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c192_intel +Checking test 028 control_c192_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 479.858862 + 0: The maximum resident set size (KB) = 896844 + +Test 028 control_c192_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c384_intel +Checking test 029 control_c384_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 475.869156 + 0: The maximum resident set size (KB) = 1582836 + +Test 029 control_c384_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c384gdas_intel +Checking test 030 control_c384gdas_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 423.818973 + 0: The maximum resident set size (KB) = 1648300 + +Test 030 control_c384gdas_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_intel +Checking test 031 control_stochy_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 88.387356 + 0: The maximum resident set size (KB) = 672432 + +Test 031 control_stochy_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_restart_intel +Checking test 032 control_stochy_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 88.113563 + 0: The maximum resident set size (KB) = 612952 + +Test 032 control_stochy_restart_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_lndp_intel +Checking test 033 control_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 80.716683 + 0: The maximum resident set size (KB) = 670232 + +Test 033 control_lndp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_iovr4_intel +Checking test 034 control_iovr4_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 139.665777 + 0: The maximum resident set size (KB) = 710636 + +Test 034 control_iovr4_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_iovr5_intel +Checking test 035 control_iovr5_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 127.482474 + 0: The maximum resident set size (KB) = 709060 + +Test 035 control_iovr5_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_intel +Checking test 036 control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 162.420765 + 0: The maximum resident set size (KB) = 1628072 + +Test 036 control_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_restart_p8_intel +Checking test 037 control_restart_p8_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 83.665930 + 0: The maximum resident set size (KB) = 975560 + +Test 037 control_restart_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_qr_p8_intel +Checking test 038 control_qr_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 217.172456 + 0: The maximum resident set size (KB) = 1642360 + +Test 038 control_qr_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_restart_qr_p8_intel +Checking test 039 control_restart_qr_p8_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 133.876644 + 0: The maximum resident set size (KB) = 901364 + +Test 039 control_restart_qr_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_decomp_p8_intel +Checking test 040 control_decomp_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 163.446469 + 0: The maximum resident set size (KB) = 1618104 + +Test 040 control_decomp_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_2threads_p8_intel +Checking test 041 control_2threads_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 150.739735 + 0: The maximum resident set size (KB) = 1713452 + +Test 041 control_2threads_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_lndp_intel +Checking test 042 control_p8_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 284.284718 + 0: The maximum resident set size (KB) = 1630760 + +Test 042 control_p8_lndp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_rrtmgp_intel +Checking test 043 control_p8_rrtmgp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 217.604565 + 0: The maximum resident set size (KB) = 1702244 + +Test 043 control_p8_rrtmgp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_mynn_intel +Checking test 044 control_p8_mynn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 197.556576 + 0: The maximum resident set size (KB) = 1631076 + +Test 044 control_p8_mynn_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/merra2_thompson_intel +Checking test 045 merra2_thompson_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 182.010249 + 0: The maximum resident set size (KB) = 1635712 + +Test 045 merra2_thompson_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_intel +Checking test 046 regional_control_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 258.934048 + 0: The maximum resident set size (KB) = 1236564 + +Test 046 regional_control_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_restart_intel +Checking test 047 regional_restart_intel results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 135.663892 + 0: The maximum resident set size (KB) = 1212824 + +Test 047 regional_restart_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_qr_intel +Checking test 048 regional_control_qr_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 260.666347 + 0: The maximum resident set size (KB) = 1227372 + +Test 048 regional_control_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_restart_qr_intel +Checking test 049 regional_restart_qr_intel results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 135.586651 + 0: The maximum resident set size (KB) = 1215432 + +Test 049 regional_restart_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_decomp_intel +Checking test 050 regional_decomp_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 282.733955 + 0: The maximum resident set size (KB) = 1211916 + +Test 050 regional_decomp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_2threads_intel +Checking test 051 regional_2threads_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 166.343521 + 0: The maximum resident set size (KB) = 1148280 + +Test 051 regional_2threads_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_noquilt_intel +Checking test 052 regional_noquilt_intel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 263.163992 + 0: The maximum resident set size (KB) = 1488428 + +Test 052 regional_noquilt_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_netcdf_parallel_intel +Checking test 053 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + + 0: The total amount of wall time = 274.187409 + 0: The maximum resident set size (KB) = 1214704 + +Test 053 regional_netcdf_parallel_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_2dwrtdecomp_intel +Checking test 054 regional_2dwrtdecomp_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 263.678587 + 0: The maximum resident set size (KB) = 1229136 + +Test 054 regional_2dwrtdecomp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_wofs_intel +Checking test 055 regional_wofs_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 316.577831 + 0: The maximum resident set size (KB) = 1106768 + +Test 055 regional_wofs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_intel +Checking test 056 rap_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 392.661479 + 0: The maximum resident set size (KB) = 1409280 + +Test 056 rap_control_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_spp_sppt_shum_skeb_intel +Checking test 057 regional_spp_sppt_shum_skeb_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 252.674390 + 0: The maximum resident set size (KB) = 1320520 + +Test 057 regional_spp_sppt_shum_skeb_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_decomp_intel +Checking test 058 rap_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 460.507644 + 0: The maximum resident set size (KB) = 1339908 + +Test 058 rap_decomp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_intel +Checking test 059 rap_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 391.127702 + 0: The maximum resident set size (KB) = 1547208 + +Test 059 rap_2threads_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_intel +Checking test 060 rap_restart_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 201.130924 + 0: The maximum resident set size (KB) = 1225208 + +Test 060 rap_restart_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_intel +Checking test 061 rap_sfcdiff_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 394.253780 + 0: The maximum resident set size (KB) = 1418180 + +Test 061 rap_sfcdiff_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_decomp_intel +Checking test 062 rap_sfcdiff_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 412.826340 + 0: The maximum resident set size (KB) = 1354136 + +Test 062 rap_sfcdiff_decomp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_restart_intel +Checking test 063 rap_sfcdiff_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 300.164498 + 0: The maximum resident set size (KB) = 1265440 + +Test 063 rap_sfcdiff_restart_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_intel +Checking test 064 hrrr_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 373.054235 + 0: The maximum resident set size (KB) = 1366296 + +Test 064 hrrr_control_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_intel +Checking test 065 hrrr_control_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 362.971107 + 0: The maximum resident set size (KB) = 1176144 + +Test 065 hrrr_control_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_intel +Checking test 066 hrrr_control_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 395.430150 + 0: The maximum resident set size (KB) = 1318532 + +Test 066 hrrr_control_decomp_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_intel +Checking test 067 hrrr_control_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 347.499273 + 0: The maximum resident set size (KB) = 1252780 + +Test 067 hrrr_control_2threads_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_intel +Checking test 068 hrrr_control_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 280.810275 + 0: The maximum resident set size (KB) = 1212712 + +Test 068 hrrr_control_restart_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_intel +Checking test 069 hrrr_control_restart_qr_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 277.157162 + 0: The maximum resident set size (KB) = 1083016 + +Test 069 hrrr_control_restart_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_intel +Checking test 070 rrfs_v1beta_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 376.696620 + 0: The maximum resident set size (KB) = 1384216 + +Test 070 rrfs_v1beta_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1nssl_intel +Checking test 071 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 467.434737 + 0: The maximum resident set size (KB) = 956260 + +Test 071 rrfs_v1nssl_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1nssl_nohailnoccn_intel +Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 450.886122 + 0: The maximum resident set size (KB) = 1126116 + +Test 072 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_gf_intel +Checking test 073 hrrr_gf_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 395.177758 + 0: The maximum resident set size (KB) = 1414044 + +Test 073 hrrr_gf_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_c3_intel +Checking test 074 hrrr_c3_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 383.533769 + 0: The maximum resident set size (KB) = 1416252 + +Test 074 hrrr_c3_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmg_intel +Checking test 075 control_csawmg_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 305.649422 + 0: The maximum resident set size (KB) = 985564 + +Test 075 control_csawmg_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmgt_intel +Checking test 076 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 302.600326 + 0: The maximum resident set size (KB) = 971004 + +Test 076 control_csawmgt_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_intel +Checking test 077 control_ras_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 165.781895 + 0: The maximum resident set size (KB) = 920132 + +Test 077 control_ras_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wam_intel +Checking test 078 control_wam_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 100.907478 + 0: The maximum resident set size (KB) = 860180 + +Test 078 control_wam_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_faster_intel +Checking test 079 control_p8_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 135.318144 + 0: The maximum resident set size (KB) = 1617456 + +Test 079 control_p8_faster_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_faster_intel +Checking test 080 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 230.857891 + 0: The maximum resident set size (KB) = 1229024 + +Test 080 regional_control_faster_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_debug_intel +Checking test 081 control_CubedSphereGrid_debug_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 126.890654 + 0: The maximum resident set size (KB) = 809244 + +Test 081 control_CubedSphereGrid_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 146.520060 + 0: The maximum resident set size (KB) = 811136 + +Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_debug_intel +Checking test 083 control_stochy_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 137.304716 + 0: The maximum resident set size (KB) = 823304 + +Test 083 control_stochy_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_lndp_debug_intel +Checking test 084 control_lndp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 126.032884 + 0: The maximum resident set size (KB) = 812580 + +Test 084 control_lndp_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmg_debug_intel +Checking test 085 control_csawmg_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 193.459982 + 0: The maximum resident set size (KB) = 852900 + +Test 085 control_csawmg_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmgt_debug_intel +Checking test 086 control_csawmgt_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 192.072410 + 0: The maximum resident set size (KB) = 860964 + +Test 086 control_csawmgt_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_debug_intel +Checking test 087 control_ras_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 127.753490 + 0: The maximum resident set size (KB) = 823072 + +Test 087 control_ras_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_diag_debug_intel +Checking test 088 control_diag_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 129.305114 + 0: The maximum resident set size (KB) = 873312 + +Test 088 control_diag_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_debug_p8_intel +Checking test 089 control_debug_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 152.729129 + 0: The maximum resident set size (KB) = 1643672 + +Test 089 control_debug_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_debug_intel +Checking test 090 regional_debug_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + + 0: The total amount of wall time = 839.955632 + 0: The maximum resident set size (KB) = 1255088 + +Test 090 regional_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_intel +Checking test 091 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 228.777944 + 0: The maximum resident set size (KB) = 1238592 + +Test 091 rap_control_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_intel +Checking test 092 hrrr_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 225.758067 + 0: The maximum resident set size (KB) = 1184676 + +Test 092 hrrr_control_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_unified_drag_suite_debug_intel +Checking test 093 rap_unified_drag_suite_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 239.823510 + 0: The maximum resident set size (KB) = 1236916 + +Test 093 rap_unified_drag_suite_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_diag_debug_intel +Checking test 094 rap_diag_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 248.392576 + 0: The maximum resident set size (KB) = 1307768 + +Test 094 rap_diag_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_cires_ugwp_debug_intel +Checking test 095 rap_cires_ugwp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 232.995532 + 0: The maximum resident set size (KB) = 1220960 + +Test 095 rap_cires_ugwp_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_unified_ugwp_debug_intel +Checking test 096 rap_unified_ugwp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 236.449216 + 0: The maximum resident set size (KB) = 1211068 + +Test 096 rap_unified_ugwp_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_lndp_debug_intel +Checking test 097 rap_lndp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 227.002772 + 0: The maximum resident set size (KB) = 1239040 + +Test 097 rap_lndp_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_progcld_thompson_debug_intel +Checking test 098 rap_progcld_thompson_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 230.478043 + 0: The maximum resident set size (KB) = 1206924 + +Test 098 rap_progcld_thompson_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_debug_intel +Checking test 099 rap_noah_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 228.052489 + 0: The maximum resident set size (KB) = 1222160 + +Test 099 rap_noah_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_debug_intel +Checking test 100 rap_sfcdiff_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 236.410578 + 0: The maximum resident set size (KB) = 1225596 + +Test 100 rap_sfcdiff_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 381.526670 + 0: The maximum resident set size (KB) = 1226136 + +Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_debug_intel +Checking test 102 rrfs_v1beta_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 233.437833 + 0: The maximum resident set size (KB) = 1188740 + +Test 102 rrfs_v1beta_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_clm_lake_debug_intel +Checking test 103 rap_clm_lake_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 282.631247 + 0: The maximum resident set size (KB) = 1239864 + +Test 103 rap_clm_lake_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_flake_debug_intel +Checking test 104 rap_flake_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 230.650810 + 0: The maximum resident set size (KB) = 1220072 + +Test 104 rap_flake_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 187.420390 + 0: The maximum resident set size (KB) = 1256444 + +Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn32_phy32_intel +Checking test 106 rap_control_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 332.241064 + 0: The maximum resident set size (KB) = 1232436 + +Test 106 rap_control_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_dyn32_phy32_intel +Checking test 107 hrrr_control_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 177.431527 + 0: The maximum resident set size (KB) = 1099840 + +Test 107 hrrr_control_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_dyn32_phy32_intel +Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 175.189629 + 0: The maximum resident set size (KB) = 1035184 + +Test 108 hrrr_control_qr_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_dyn32_phy32_intel +Checking test 109 rap_2threads_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 309.712482 + 0: The maximum resident set size (KB) = 1330840 + +Test 109 rap_2threads_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_dyn32_phy32_intel +Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 154.594591 + 0: The maximum resident set size (KB) = 1069768 + +Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_dyn32_phy32_intel +Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 172.866197 + 0: The maximum resident set size (KB) = 1095560 + +Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_dyn32_phy32_intel +Checking test 112 rap_restart_dyn32_phy32_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 239.379135 + 0: The maximum resident set size (KB) = 1120404 + +Test 112 rap_restart_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_dyn32_phy32_intel +Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 88.505136 + 0: The maximum resident set size (KB) = 996252 + +Test 113 hrrr_control_restart_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 91.355068 + 0: The maximum resident set size (KB) = 912800 + +Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_control_intel +Checking test 115 conus13km_control_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 95.773641 + 0: The maximum resident set size (KB) = 1349024 + +Test 115 conus13km_control_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_2threads_intel +Checking test 116 conus13km_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 37.410482 + 0: The maximum resident set size (KB) = 1251504 + +Test 116 conus13km_2threads_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_restart_mismatch_intel +Checking test 117 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 55.596400 + 0: The maximum resident set size (KB) = 1218024 + +Test 117 conus13km_restart_mismatch_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_intel +Checking test 118 rap_control_dyn64_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 218.255460 + 0: The maximum resident set size (KB) = 1269916 + +Test 118 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_dyn32_phy32_intel +Checking test 119 rap_control_debug_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 225.826913 + 0: The maximum resident set size (KB) = 1079160 + +Test 119 rap_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_dyn32_phy32_intel +Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 226.575518 + 0: The maximum resident set size (KB) = 1080012 + +Test 120 hrrr_control_debug_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_intel +Checking test 121 conus13km_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 695.016116 + 0: The maximum resident set size (KB) = 1372312 + +Test 121 conus13km_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_2threads_intel +Checking test 122 conus13km_debug_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 398.450634 + 0: The maximum resident set size (KB) = 1287528 + +Test 122 conus13km_debug_2threads_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_radar_tten_debug_intel +Checking test 123 conus13km_radar_tten_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 704.880501 + 0: The maximum resident set size (KB) = 1450520 + +Test 123 conus13km_radar_tten_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_debug_intel +Checking test 124 rap_control_dyn64_phy32_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 232.203230 + 0: The maximum resident set size (KB) = 1193920 + +Test 124 rap_control_dyn64_phy32_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_intel +Checking test 125 hafs_regional_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 204.737912 + 0: The maximum resident set size (KB) = 1471696 + +Test 125 hafs_regional_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 235.428595 + 0: The maximum resident set size (KB) = 1828108 + +Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_ocn_intel +Checking test 127 hafs_regional_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 350.986300 + 0: The maximum resident set size (KB) = 1795396 + +Test 127 hafs_regional_atm_ocn_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_wav_intel +Checking test 128 hafs_regional_atm_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 850.731364 + 0: The maximum resident set size (KB) = 1820716 + +Test 128 hafs_regional_atm_wav_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_ocn_wav_intel +Checking test 129 hafs_regional_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 939.802058 + 0: The maximum resident set size (KB) = 1839552 + +Test 129 hafs_regional_atm_ocn_wav_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_1nest_atm_intel +Checking test 130 hafs_regional_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 278.956479 + 0: The maximum resident set size (KB) = 792676 + +Test 130 hafs_regional_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_1nest_atm_qr_intel +Checking test 131 hafs_regional_1nest_atm_qr_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 308.328263 + 0: The maximum resident set size (KB) = 605016 + +Test 131 hafs_regional_1nest_atm_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_telescopic_2nests_atm_intel +Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 326.139531 + 0: The maximum resident set size (KB) = 790152 + +Test 132 hafs_regional_telescopic_2nests_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_1nest_atm_intel +Checking test 133 hafs_global_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 128.662487 + 0: The maximum resident set size (KB) = 467140 + +Test 133 hafs_global_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_1nest_atm_qr_intel +Checking test 134 hafs_global_1nest_atm_qr_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 156.151242 + 0: The maximum resident set size (KB) = 435912 + +Test 134 hafs_global_1nest_atm_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_multiple_4nests_atm_intel +Checking test 135 hafs_global_multiple_4nests_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 364.519825 + 0: The maximum resident set size (KB) = 551936 + +Test 135 hafs_global_multiple_4nests_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_multiple_4nests_atm_qr_intel +Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 438.927935 + 0: The maximum resident set size (KB) = 540212 + +Test 136 hafs_global_multiple_4nests_atm_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_specified_moving_1nest_atm_intel +Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 177.057528 + 0: The maximum resident set size (KB) = 801296 + +Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 166.943229 + 0: The maximum resident set size (KB) = 803100 + +Test 138 hafs_regional_storm_following_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 196.249831 + 0: The maximum resident set size (KB) = 617256 + +Test 139 hafs_regional_storm_following_1nest_atm_qr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 221.951634 + 0: The maximum resident set size (KB) = 849420 + +Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_storm_following_1nest_atm_intel +Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 48.741003 + 0: The maximum resident set size (KB) = 473696 + +Test 141 hafs_global_storm_following_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + + 0: The total amount of wall time = 611.305438 + 0: The maximum resident set size (KB) = 850408 + +Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 981.327242 + 0: The maximum resident set size (KB) = 902116 + +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_docn_intel +Checking test 144 hafs_regional_docn_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 291.657765 + 0: The maximum resident set size (KB) = 1775384 + +Test 144 hafs_regional_docn_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_docn_oisst_intel +Checking test 145 hafs_regional_docn_oisst_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 293.716960 + 0: The maximum resident set size (KB) = 1753116 + +Test 145 hafs_regional_docn_oisst_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_datm_cdeps_intel +Checking test 146 hafs_regional_datm_cdeps_intel results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 981.288294 + 0: The maximum resident set size (KB) = 1342580 + +Test 146 hafs_regional_datm_cdeps_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_intel +Checking test 147 datm_cdeps_control_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 127.589577 + 0: The maximum resident set size (KB) = 1139024 + +Test 147 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_restart_cfsr_intel +Checking test 148 datm_cdeps_restart_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 76.929527 + 0: The maximum resident set size (KB) = 1081580 + +Test 148 datm_cdeps_restart_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_gefs_intel +Checking test 149 datm_cdeps_control_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 119.339660 + 0: The maximum resident set size (KB) = 998936 + +Test 149 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_iau_gefs_intel +Checking test 150 datm_cdeps_iau_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 122.793947 + 0: The maximum resident set size (KB) = 1002788 + +Test 150 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_stochy_gefs_intel +Checking test 151 datm_cdeps_stochy_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 123.382895 + 0: The maximum resident set size (KB) = 1004608 + +Test 151 datm_cdeps_stochy_gefs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_ciceC_cfsr_intel +Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 122.678992 + 0: The maximum resident set size (KB) = 1143548 + +Test 152 datm_cdeps_ciceC_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_bulk_cfsr_intel +Checking test 153 datm_cdeps_bulk_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 120.828032 + 0: The maximum resident set size (KB) = 1137564 + +Test 153 datm_cdeps_bulk_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_bulk_gefs_intel +Checking test 154 datm_cdeps_bulk_gefs_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 120.647830 + 0: The maximum resident set size (KB) = 1000784 + +Test 154 datm_cdeps_bulk_gefs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_mx025_cfsr_intel +Checking test 155 datm_cdeps_mx025_cfsr_intel results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 325.596937 + 0: The maximum resident set size (KB) = 1124344 + +Test 155 datm_cdeps_mx025_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_mx025_gefs_intel +Checking test 156 datm_cdeps_mx025_gefs_intel results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 316.927423 + 0: The maximum resident set size (KB) = 1142644 + +Test 156 datm_cdeps_mx025_gefs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_multiple_files_cfsr_intel +Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 123.287342 + 0: The maximum resident set size (KB) = 1143940 + +Test 157 datm_cdeps_multiple_files_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_3072x1536_cfsr_intel +Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 177.214517 + 0: The maximum resident set size (KB) = 2363288 + +Test 158 datm_cdeps_3072x1536_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_gfs_intel +Checking test 159 datm_cdeps_gfs_intel results .... + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 184.570499 + 0: The maximum resident set size (KB) = 2368052 + +Test 159 datm_cdeps_gfs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_debug_cfsr_intel +Checking test 160 datm_cdeps_debug_cfsr_intel results .... + Comparing RESTART/20111001.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + + 0: The total amount of wall time = 288.211657 + 0: The maximum resident set size (KB) = 1068672 + +Test 160 datm_cdeps_debug_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_faster_intel +Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 123.560624 + 0: The maximum resident set size (KB) = 1123592 + +Test 161 datm_cdeps_control_cfsr_faster_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_lnd_gswp3_intel +Checking test 162 datm_cdeps_lnd_gswp3_intel results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 8.667967 + 0: The maximum resident set size (KB) = 336688 + +Test 162 datm_cdeps_lnd_gswp3_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_lnd_gswp3_rst_intel +Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 9.242803 + 0: The maximum resident set size (KB) = 336432 + +Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_atmlnd_sbs_intel +Checking test 164 control_p8_atmlnd_sbs_intel results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 186.978157 + 0: The maximum resident set size (KB) = 1701776 + +Test 164 control_p8_atmlnd_sbs_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmwav_control_noaero_p8_intel +Checking test 165 atmwav_control_noaero_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 86.882545 + 0: The maximum resident set size (KB) = 1686856 + +Test 165 atmwav_control_noaero_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_atmwav_intel +Checking test 166 control_atmwav_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 79.695239 + 0: The maximum resident set size (KB) = 694776 + +Test 166 control_atmwav_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_intel +Checking test 167 atmaero_control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 205.551694 + 0: The maximum resident set size (KB) = 1758384 + +Test 167 atmaero_control_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_rad_intel +Checking test 168 atmaero_control_p8_rad_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 253.241783 + 0: The maximum resident set size (KB) = 1795156 + +Test 168 atmaero_control_p8_rad_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_rad_micro_intel +Checking test 169 atmaero_control_p8_rad_micro_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 255.706298 + 0: The maximum resident set size (KB) = 1790028 + +Test 169 atmaero_control_p8_rad_micro_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_intel +Checking test 170 regional_atmaq_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 563.391249 + 0: The maximum resident set size (KB) = 5511200 + +Test 170 regional_atmaq_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_debug_intel +Checking test 171 regional_atmaq_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1005.532146 + 0: The maximum resident set size (KB) = 4986436 + +Test 171 regional_atmaq_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_faster_intel +Checking test 172 regional_atmaq_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 466.999370 + 0: The maximum resident set size (KB) = 5467936 + +Test 172 regional_atmaq_faster_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c48_gnu +Checking test 173 control_c48_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 574.262874 +The maximum resident set size (KB) = 758388 + +Test 173 control_c48_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_gnu +Checking test 174 control_stochy_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 128.271233 +The maximum resident set size (KB) = 563396 + +Test 174 control_stochy_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_gnu +Checking test 175 control_ras_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 211.051904 +The maximum resident set size (KB) = 568664 + +Test 175 control_ras_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_gnu +Checking test 176 control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 218.355538 +The maximum resident set size (KB) = 1318812 + +Test 176 control_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_flake_gnu +Checking test 177 control_flake_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 252.636793 +The maximum resident set size (KB) = 612280 + +Test 177 control_flake_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_gnu +Checking test 178 rap_control_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 460.487268 +The maximum resident set size (KB) = 912224 + +Test 178 rap_control_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_decomp_gnu +Checking test 179 rap_decomp_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 468.681073 +The maximum resident set size (KB) = 912716 + +Test 179 rap_decomp_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_gnu +Checking test 180 rap_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 424.438825 +The maximum resident set size (KB) = 982108 + +Test 180 rap_2threads_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_gnu +Checking test 181 rap_restart_gnu results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 227.268646 +The maximum resident set size (KB) = 783728 + +Test 181 rap_restart_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_gnu +Checking test 182 rap_sfcdiff_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 469.043410 +The maximum resident set size (KB) = 911940 + +Test 182 rap_sfcdiff_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_decomp_gnu +Checking test 183 rap_sfcdiff_decomp_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 471.426248 +The maximum resident set size (KB) = 917336 + +Test 183 rap_sfcdiff_decomp_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_restart_gnu +Checking test 184 rap_sfcdiff_restart_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 337.755690 +The maximum resident set size (KB) = 787568 + +Test 184 rap_sfcdiff_restart_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_gnu +Checking test 185 hrrr_control_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 452.179186 +The maximum resident set size (KB) = 909696 + +Test 185 hrrr_control_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_gnu +Checking test 186 hrrr_control_qr_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 452.744940 +The maximum resident set size (KB) = 918052 + +Test 186 hrrr_control_qr_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_gnu +Checking test 187 hrrr_control_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 406.198821 +The maximum resident set size (KB) = 974184 + +Test 187 hrrr_control_2threads_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_gnu +Checking test 188 hrrr_control_decomp_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 451.365078 +The maximum resident set size (KB) = 910724 + +Test 188 hrrr_control_decomp_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_gnu +Checking test 189 hrrr_control_restart_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 327.779528 +The maximum resident set size (KB) = 738680 + +Test 189 hrrr_control_restart_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_gnu +Checking test 190 hrrr_control_restart_qr_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 330.841998 +The maximum resident set size (KB) = 647104 + +Test 190 hrrr_control_restart_qr_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_gnu +Checking test 191 rrfs_v1beta_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 459.855853 +The maximum resident set size (KB) = 909504 + +Test 191 rrfs_v1beta_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_gf_gnu +Checking test 192 hrrr_gf_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 469.608626 +The maximum resident set size (KB) = 910308 + +Test 192 hrrr_gf_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_diag_debug_gnu +Checking test 193 control_diag_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 63.640569 +The maximum resident set size (KB) = 609360 + +Test 193 control_diag_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_debug_gnu +Checking test 194 regional_debug_gnu results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 370.218562 +The maximum resident set size (KB) = 858264 + +Test 194 regional_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_gnu +Checking test 195 rap_control_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 108.081018 +The maximum resident set size (KB) = 926928 + +Test 195 rap_control_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_gnu +Checking test 196 hrrr_control_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 105.375655 +The maximum resident set size (KB) = 922452 + +Test 196 hrrr_control_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_diag_debug_gnu +Checking test 197 rap_diag_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 120.317428 +The maximum resident set size (KB) = 1007576 + +Test 197 rap_diag_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 175.978859 +The maximum resident set size (KB) = 928352 + +Test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_progcld_thompson_debug_gnu +Checking test 199 rap_progcld_thompson_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 109.743783 +The maximum resident set size (KB) = 928188 + +Test 199 rap_progcld_thompson_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_debug_gnu +Checking test 200 rrfs_v1beta_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 121.074773 +The maximum resident set size (KB) = 921268 + +Test 200 rrfs_v1beta_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_debug_gnu +Checking test 201 control_ras_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 65.866326 +The maximum resident set size (KB) = 558308 + +Test 201 control_ras_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_debug_gnu +Checking test 202 control_stochy_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 82.023100 +The maximum resident set size (KB) = 554216 + +Test 202 control_stochy_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_debug_p8_gnu +Checking test 203 control_debug_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 75.889093 +The maximum resident set size (KB) = 1311320 + +Test 203 control_debug_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_flake_debug_gnu +Checking test 204 rap_flake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 108.945884 +The maximum resident set size (KB) = 924860 + +Test 204 rap_flake_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_clm_lake_debug_gnu +Checking test 205 rap_clm_lake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 124.338453 +The maximum resident set size (KB) = 927928 + +Test 205 rap_clm_lake_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn32_phy32_gnu +Checking test 206 rap_control_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 438.833128 +The maximum resident set size (KB) = 771356 + +Test 206 rap_control_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_dyn32_phy32_gnu +Checking test 207 hrrr_control_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 223.643326 +The maximum resident set size (KB) = 770080 + +Test 207 hrrr_control_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_dyn32_phy32_gnu +Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 228.077049 +The maximum resident set size (KB) = 779900 + +Test 208 hrrr_control_qr_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_dyn32_phy32_gnu +Checking test 209 rap_2threads_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 404.819856 +The maximum resident set size (KB) = 823308 + +Test 209 rap_2threads_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 203.320916 +The maximum resident set size (KB) = 807592 + +Test 210 hrrr_control_2threads_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 223.825870 +The maximum resident set size (KB) = 770992 + +Test 211 hrrr_control_decomp_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_dyn32_phy32_gnu +Checking test 212 rap_restart_dyn32_phy32_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 323.557836 +The maximum resident set size (KB) = 679900 + +Test 212 rap_restart_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_dyn32_phy32_gnu +Checking test 213 hrrr_control_restart_dyn32_phy32_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 112.309162 +The maximum resident set size (KB) = 647832 + +Test 213 hrrr_control_restart_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 214 hrrr_control_restart_qr_dyn32_phy32_gnu results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 120.203635 +The maximum resident set size (KB) = 612152 + +Test 214 hrrr_control_restart_qr_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_control_gnu +Checking test 215 conus13km_control_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + +The total amount of wall time = 140.537553 +The maximum resident set size (KB) = 985712 + +Test 215 conus13km_control_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_2threads_gnu +Checking test 216 conus13km_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 57.902838 +The maximum resident set size (KB) = 994776 + +Test 216 conus13km_2threads_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_restart_mismatch_gnu +Checking test 217 conus13km_restart_mismatch_gnu results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 81.351179 +The maximum resident set size (KB) = 643100 + +Test 217 conus13km_restart_mismatch_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_gnu +Checking test 218 rap_control_dyn64_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 250.967102 +The maximum resident set size (KB) = 794228 + +Test 218 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_dyn32_phy32_gnu +Checking test 219 rap_control_debug_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 104.241774 +The maximum resident set size (KB) = 781492 + +Test 219 rap_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_dyn32_phy32_gnu +Checking test 220 hrrr_control_debug_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 102.948256 +The maximum resident set size (KB) = 780716 + +Test 220 hrrr_control_debug_dyn32_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_gnu +Checking test 221 conus13km_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 316.067158 +The maximum resident set size (KB) = 994284 + +Test 221 conus13km_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_2threads_gnu +Checking test 222 conus13km_debug_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 187.601408 +The maximum resident set size (KB) = 1007364 + +Test 222 conus13km_debug_2threads_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_radar_tten_debug_gnu +Checking test 223 conus13km_radar_tten_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 317.731140 +The maximum resident set size (KB) = 1063012 + +Test 223 conus13km_radar_tten_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_debug_gnu +Checking test 224 rap_control_dyn64_phy32_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 106.340161 +The maximum resident set size (KB) = 801912 + +Test 224 rap_control_dyn64_phy32_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_gnu +Checking test 225 cpld_control_p8_gnu results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 416.517715 +The maximum resident set size (KB) = 1595516 + +Test 225 cpld_control_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_nowave_noaero_p8_gnu +Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 285.567893 +The maximum resident set size (KB) = 1425212 + +Test 226 cpld_control_nowave_noaero_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_p8_gnu +Checking test 227 cpld_debug_p8_gnu results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +The total amount of wall time = 216.041346 +The maximum resident set size (KB) = 1600908 + +Test 227 cpld_debug_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_pdlib_p8_gnu +Checking test 228 cpld_control_pdlib_p8_gnu results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 984.904734 +The maximum resident set size (KB) = 1396552 + +Test 228 cpld_control_pdlib_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_pdlib_p8_gnu +Checking test 229 cpld_debug_pdlib_p8_gnu results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +The total amount of wall time = 533.650618 +The maximum resident set size (KB) = 1410032 + +Test 229 cpld_debug_pdlib_p8_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_gnu +Checking test 230 datm_cdeps_control_cfsr_gnu results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +The total amount of wall time = 137.747779 +The maximum resident set size (KB) = 750536 + +Test 230 datm_cdeps_control_cfsr_gnu PASS + + +REGRESSION TEST WAS SUCCESSFUL +Tue Sep 19 21:08:06 CDT 2023 +Elapsed time: 01h:17m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 2052dad320..40b8a86a21 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ -Sun Sep 17 20:25:30 UTC 2023 +Tue Sep 19 18:43:50 UTC 2023 Start Regression test -Testing UFSWM Hash: 564ce02c11af427e182ad1176cf7f4c0f5347f47 +Testing UFSWM Hash: 80a29951ede3210bd82b51be1230b78219a1fecf Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,39 +15,39 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 307 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1898 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1726 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1792 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1757 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1761 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 293 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 304 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1887 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1729 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1798 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1786 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1748 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1808 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1834 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1831 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1840 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2065 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 306 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5490 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2054 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1783 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1851 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 233 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2515 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5473 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2014 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 416.505700 - 0: The maximum resident set size (KB) = 1747068 + 0: The total amount of wall time = 417.685070 + 0: The maximum resident set size (KB) = 1758084 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.698410 - 0: The maximum resident set size (KB) = 1609804 + 0: The total amount of wall time = 289.510991 + 0: The maximum resident set size (KB) = 1616132 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.446968 - 0: The maximum resident set size (KB) = 1797980 + 0: The total amount of wall time = 471.444021 + 0: The maximum resident set size (KB) = 1798544 Test 003 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.472004 - 0: The maximum resident set size (KB) = 1690020 + 0: The total amount of wall time = 274.206446 + 0: The maximum resident set size (KB) = 1697476 Test 004 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.543202 - 0: The maximum resident set size (KB) = 1800816 + 0: The total amount of wall time = 470.731966 + 0: The maximum resident set size (KB) = 1813232 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 271.189704 - 0: The maximum resident set size (KB) = 1526804 + 0: The total amount of wall time = 275.842380 + 0: The maximum resident set size (KB) = 1530252 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.697399 - 0: The maximum resident set size (KB) = 2165452 + 0: The total amount of wall time = 452.038948 + 0: The maximum resident set size (KB) = 2167388 Test 007 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.696306 - 0: The maximum resident set size (KB) = 1793524 + 0: The total amount of wall time = 467.031889 + 0: The maximum resident set size (KB) = 1795720 Test 008 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_mpi_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.226564 - 0: The maximum resident set size (KB) = 1759652 + 0: The total amount of wall time = 395.408496 + 0: The maximum resident set size (KB) = 1765160 Test 009 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.878337 - 0: The maximum resident set size (KB) = 1786704 + 0: The total amount of wall time = 475.887029 + 0: The maximum resident set size (KB) = 1786872 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.146849 - 0: The maximum resident set size (KB) = 1639000 + 0: The total amount of wall time = 350.654585 + 0: The maximum resident set size (KB) = 1637456 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_nowave_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +839,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 339.975941 - 0: The maximum resident set size (KB) = 1687772 + 0: The total amount of wall time = 350.121523 + 0: The maximum resident set size (KB) = 1688184 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 677.110791 - 0: The maximum resident set size (KB) = 1805504 + 0: The total amount of wall time = 677.881349 + 0: The maximum resident set size (KB) = 1815424 Test 013 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.652584 - 0: The maximum resident set size (KB) = 1647236 + 0: The total amount of wall time = 461.532716 + 0: The maximum resident set size (KB) = 1657628 Test 014 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 344.210723 - 0: The maximum resident set size (KB) = 1690992 + 0: The total amount of wall time = 346.951399 + 0: The maximum resident set size (KB) = 1677764 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 806.467519 - 0: The maximum resident set size (KB) = 2783016 + 0: The total amount of wall time = 804.848797 + 0: The maximum resident set size (KB) = 2792992 Test 016 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.579160 - 0: The maximum resident set size (KB) = 1815376 + 0: The total amount of wall time = 486.921398 + 0: The maximum resident set size (KB) = 1797340 Test 017 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.092460 - 0: The maximum resident set size (KB) = 629532 + 0: The total amount of wall time = 254.766353 + 0: The maximum resident set size (KB) = 637280 Test 018 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 177.945102 - 0: The maximum resident set size (KB) = 579988 + 0: The total amount of wall time = 183.543348 + 0: The maximum resident set size (KB) = 579176 Test 019 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.919395 - 0: The maximum resident set size (KB) = 584496 + 0: The total amount of wall time = 198.796647 + 0: The maximum resident set size (KB) = 584180 Test 020 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,16 +1248,16 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.713019 - 0: The maximum resident set size (KB) = 579736 + 0: The total amount of wall time = 180.441671 + 0: The maximum resident set size (KB) = 580644 Test 021 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.513087 - 0: The maximum resident set size (KB) = 578160 + 0: The total amount of wall time = 193.731143 + 0: The maximum resident set size (KB) = 580288 Test 022 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 599.812452 -0: The maximum resident set size (KB) = 806900 +0: The total amount of wall time = 606.809280 +0: The maximum resident set size (KB) = 804556 Test 023 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 732.855566 - 0: The maximum resident set size (KB) = 694332 + 0: The total amount of wall time = 748.440668 + 0: The maximum resident set size (KB) = 705184 Test 024 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 937.538273 - 0: The maximum resident set size (KB) = 1171772 + 0: The total amount of wall time = 943.840369 + 0: The maximum resident set size (KB) = 1164676 Test 025 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 837.894824 - 0: The maximum resident set size (KB) = 1305048 + 0: The total amount of wall time = 808.394158 + 0: The maximum resident set size (KB) = 1297392 Test 026 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.878186 - 0: The maximum resident set size (KB) = 590240 + 0: The total amount of wall time = 127.805292 + 0: The maximum resident set size (KB) = 592748 Test 027 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.563627 - 0: The maximum resident set size (KB) = 461664 + 0: The total amount of wall time = 67.022008 + 0: The maximum resident set size (KB) = 464400 Test 028 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.772953 - 0: The maximum resident set size (KB) = 585772 + 0: The total amount of wall time = 112.547913 + 0: The maximum resident set size (KB) = 585448 Test 029 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.309392 - 0: The maximum resident set size (KB) = 575260 + 0: The total amount of wall time = 190.687120 + 0: The maximum resident set size (KB) = 582568 Test 030 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.746536 - 0: The maximum resident set size (KB) = 579968 + 0: The total amount of wall time = 189.419105 + 0: The maximum resident set size (KB) = 584616 Test 031 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.562514 - 0: The maximum resident set size (KB) = 1546460 + 0: The total amount of wall time = 227.288996 + 0: The maximum resident set size (KB) = 1560572 Test 032 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 118.763474 - 0: The maximum resident set size (KB) = 836384 + 0: The total amount of wall time = 121.395984 + 0: The maximum resident set size (KB) = 834596 Test 033 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 233.750615 - 0: The maximum resident set size (KB) = 1561588 + 0: The total amount of wall time = 229.504747 + 0: The maximum resident set size (KB) = 1554324 Test 034 control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.365389 - 0: The maximum resident set size (KB) = 791412 + 0: The total amount of wall time = 121.540277 + 0: The maximum resident set size (KB) = 800496 Test 035 control_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 239.130034 - 0: The maximum resident set size (KB) = 1536256 + 0: The total amount of wall time = 239.792408 + 0: The maximum resident set size (KB) = 1534976 Test 036 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.397480 - 0: The maximum resident set size (KB) = 1629712 + 0: The total amount of wall time = 213.327639 + 0: The maximum resident set size (KB) = 1638044 Test 037 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 429.831924 - 0: The maximum resident set size (KB) = 1545328 + 0: The total amount of wall time = 426.338849 + 0: The maximum resident set size (KB) = 1549484 Test 038 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 303.785156 - 0: The maximum resident set size (KB) = 1607092 + 0: The total amount of wall time = 314.931616 + 0: The maximum resident set size (KB) = 1614084 Test 039 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 236.233002 - 0: The maximum resident set size (KB) = 1553556 + 0: The total amount of wall time = 239.466484 + 0: The maximum resident set size (KB) = 1563348 Test 040 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 259.378957 - 0: The maximum resident set size (KB) = 1555668 + 0: The total amount of wall time = 269.312797 + 0: The maximum resident set size (KB) = 1564720 Test 041 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 392.004612 - 0: The maximum resident set size (KB) = 995332 + 0: The total amount of wall time = 393.743366 + 0: The maximum resident set size (KB) = 999736 Test 042 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 202.911476 - 0: The maximum resident set size (KB) = 991684 + 0: The total amount of wall time = 231.862766 + 0: The maximum resident set size (KB) = 990140 Test 043 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 401.074202 - 0: The maximum resident set size (KB) = 995916 + 0: The total amount of wall time = 398.179514 + 0: The maximum resident set size (KB) = 997700 Test 044 regional_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 204.791289 - 0: The maximum resident set size (KB) = 990168 + 0: The total amount of wall time = 246.866335 + 0: The maximum resident set size (KB) = 987696 Test 045 regional_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 417.674715 - 0: The maximum resident set size (KB) = 984956 + 0: The total amount of wall time = 424.235462 + 0: The maximum resident set size (KB) = 986420 Test 046 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 240.641409 - 0: The maximum resident set size (KB) = 994392 + 0: The total amount of wall time = 245.659695 + 0: The maximum resident set size (KB) = 972864 Test 047 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 394.464230 - 0: The maximum resident set size (KB) = 1000416 + 0: The total amount of wall time = 394.908342 + 0: The maximum resident set size (KB) = 996048 Test 048 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_2dwrtdecomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 391.119778 - 0: The maximum resident set size (KB) = 991424 + 0: The total amount of wall time = 399.933645 + 0: The maximum resident set size (KB) = 994052 Test 049 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 586.759446 - 0: The maximum resident set size (KB) = 1076468 + 0: The total amount of wall time = 607.943774 + 0: The maximum resident set size (KB) = 1082112 Test 050 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 319.992574 - 0: The maximum resident set size (KB) = 1109660 + 0: The total amount of wall time = 328.561612 + 0: The maximum resident set size (KB) = 1109552 Test 051 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 623.474074 - 0: The maximum resident set size (KB) = 1030112 + 0: The total amount of wall time = 657.716204 + 0: The maximum resident set size (KB) = 1031000 Test 052 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 551.900392 - 0: The maximum resident set size (KB) = 1160236 + 0: The total amount of wall time = 593.187293 + 0: The maximum resident set size (KB) = 1148800 Test 053 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 296.870346 - 0: The maximum resident set size (KB) = 1002480 + 0: The total amount of wall time = 323.750530 + 0: The maximum resident set size (KB) = 1013648 Test 054 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 590.979756 - 0: The maximum resident set size (KB) = 1073480 + 0: The total amount of wall time = 618.385381 + 0: The maximum resident set size (KB) = 1073296 Test 055 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 626.028326 - 0: The maximum resident set size (KB) = 1028308 + 0: The total amount of wall time = 661.885894 + 0: The maximum resident set size (KB) = 1026636 Test 056 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 461.265336 - 0: The maximum resident set size (KB) = 1017484 + 0: The total amount of wall time = 466.079644 + 0: The maximum resident set size (KB) = 1017168 Test 057 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 568.927302 - 0: The maximum resident set size (KB) = 1027496 + 0: The total amount of wall time = 604.345624 + 0: The maximum resident set size (KB) = 1025532 Test 058 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 561.299553 - 0: The maximum resident set size (KB) = 956852 + 0: The total amount of wall time = 598.684286 + 0: The maximum resident set size (KB) = 969564 Test 059 hrrr_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 595.374769 - 0: The maximum resident set size (KB) = 983256 + 0: The total amount of wall time = 619.706258 + 0: The maximum resident set size (KB) = 984828 Test 060 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 525.107961 - 0: The maximum resident set size (KB) = 1031236 + 0: The total amount of wall time = 555.644305 + 0: The maximum resident set size (KB) = 1019804 Test 061 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 446.039829 - 0: The maximum resident set size (KB) = 962908 + 0: The total amount of wall time = 454.749654 + 0: The maximum resident set size (KB) = 964524 Test 062 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 453.143912 - 0: The maximum resident set size (KB) = 892524 + 0: The total amount of wall time = 460.216194 + 0: The maximum resident set size (KB) = 874368 Test 063 hrrr_control_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 586.139347 - 0: The maximum resident set size (KB) = 1045592 + 0: The total amount of wall time = 615.336417 + 0: The maximum resident set size (KB) = 1036768 Test 064 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.252161 - 0: The maximum resident set size (KB) = 672668 + 0: The total amount of wall time = 727.915766 + 0: The maximum resident set size (KB) = 679328 Test 065 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.012286 - 0: The maximum resident set size (KB) = 738724 + 0: The total amount of wall time = 736.042622 + 0: The maximum resident set size (KB) = 747492 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 591.567309 - 0: The maximum resident set size (KB) = 1069408 + 0: The total amount of wall time = 650.598064 + 0: The maximum resident set size (KB) = 1069712 Test 067 hrrr_gf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 593.628114 - 0: The maximum resident set size (KB) = 1067984 + 0: The total amount of wall time = 651.117633 + 0: The maximum resident set size (KB) = 1068940 Test 068 hrrr_c3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2960,14 +2960,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 453.660400 - 0: The maximum resident set size (KB) = 692056 + 0: The total amount of wall time = 457.018261 + 0: The maximum resident set size (KB) = 678480 Test 069 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 450.164233 - 0: The maximum resident set size (KB) = 690580 + 0: The total amount of wall time = 452.064557 + 0: The maximum resident set size (KB) = 693236 Test 070 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,26 +2996,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.641199 - 0: The maximum resident set size (KB) = 674228 + 0: The total amount of wall time = 254.094583 + 0: The maximum resident set size (KB) = 677124 Test 071 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 150.076395 - 0: The maximum resident set size (KB) = 552208 + 0: The total amount of wall time = 152.474895 + 0: The maximum resident set size (KB) = 542324 Test 072 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3062,14 +3062,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 213.883755 - 0: The maximum resident set size (KB) = 1551040 + 0: The total amount of wall time = 221.288618 + 0: The maximum resident set size (KB) = 1543064 Test 073 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3080,14 +3080,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 369.752046 - 0: The maximum resident set size (KB) = 994420 + 0: The total amount of wall time = 365.520304 + 0: The maximum resident set size (KB) = 1000216 Test 074 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3114,348 +3114,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 193.441631 - 0: The maximum resident set size (KB) = 744572 + 0: The total amount of wall time = 195.886756 + 0: The maximum resident set size (KB) = 734940 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.799106 - 0: The maximum resident set size (KB) = 742748 + 0: The total amount of wall time = 191.564745 + 0: The maximum resident set size (KB) = 739076 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.120006 - 0: The maximum resident set size (KB) = 751540 + 0: The total amount of wall time = 215.033762 + 0: The maximum resident set size (KB) = 743800 Test 077 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.889271 - 0: The maximum resident set size (KB) = 743536 + 0: The total amount of wall time = 194.591654 + 0: The maximum resident set size (KB) = 741500 Test 078 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.883929 - 0: The maximum resident set size (KB) = 792568 + 0: The total amount of wall time = 302.613742 + 0: The maximum resident set size (KB) = 789156 Test 079 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.012086 - 0: The maximum resident set size (KB) = 788760 + 0: The total amount of wall time = 294.879048 + 0: The maximum resident set size (KB) = 786596 Test 080 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.753020 - 0: The maximum resident set size (KB) = 757372 + 0: The total amount of wall time = 192.588302 + 0: The maximum resident set size (KB) = 752096 Test 081 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.664286 - 0: The maximum resident set size (KB) = 801196 + 0: The total amount of wall time = 202.460293 + 0: The maximum resident set size (KB) = 788716 Test 082 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.527420 - 0: The maximum resident set size (KB) = 1558120 + 0: The total amount of wall time = 226.405059 + 0: The maximum resident set size (KB) = 1556012 Test 083 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1277.492175 - 0: The maximum resident set size (KB) = 1008480 + 0: The total amount of wall time = 1279.852957 + 0: The maximum resident set size (KB) = 1005592 Test 084 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.781452 - 0: The maximum resident set size (KB) = 1124200 + 0: The total amount of wall time = 348.512690 + 0: The maximum resident set size (KB) = 1129992 Test 085 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.683298 - 0: The maximum resident set size (KB) = 1125072 + 0: The total amount of wall time = 341.505841 + 0: The maximum resident set size (KB) = 1115516 Test 086 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_unified_drag_suite_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.212482 - 0: The maximum resident set size (KB) = 1132580 + 0: The total amount of wall time = 349.261351 + 0: The maximum resident set size (KB) = 1124060 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.821414 - 0: The maximum resident set size (KB) = 1212088 + 0: The total amount of wall time = 371.406810 + 0: The maximum resident set size (KB) = 1197548 Test 088 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.268878 - 0: The maximum resident set size (KB) = 1122420 + 0: The total amount of wall time = 361.363906 + 0: The maximum resident set size (KB) = 1124156 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_unified_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.059553 - 0: The maximum resident set size (KB) = 1130864 + 0: The total amount of wall time = 359.386154 + 0: The maximum resident set size (KB) = 1123648 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.083329 - 0: The maximum resident set size (KB) = 1118624 + 0: The total amount of wall time = 356.814666 + 0: The maximum resident set size (KB) = 1135852 Test 091 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.126310 - 0: The maximum resident set size (KB) = 1124228 + 0: The total amount of wall time = 353.783098 + 0: The maximum resident set size (KB) = 1133008 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.615119 - 0: The maximum resident set size (KB) = 1118264 + 0: The total amount of wall time = 347.490148 + 0: The maximum resident set size (KB) = 1125708 Test 093 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.092645 - 0: The maximum resident set size (KB) = 1126712 + 0: The total amount of wall time = 350.798178 + 0: The maximum resident set size (KB) = 1135288 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 579.399211 - 0: The maximum resident set size (KB) = 1128736 + 0: The total amount of wall time = 582.679801 + 0: The maximum resident set size (KB) = 1126428 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.389436 - 0: The maximum resident set size (KB) = 1121576 + 0: The total amount of wall time = 345.943428 + 0: The maximum resident set size (KB) = 1127536 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 433.734394 - 0: The maximum resident set size (KB) = 1134976 + 0: The total amount of wall time = 426.913328 + 0: The maximum resident set size (KB) = 1129284 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.069530 - 0: The maximum resident set size (KB) = 1117864 + 0: The total amount of wall time = 357.849154 + 0: The maximum resident set size (KB) = 1117420 Test 098 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 358.311462 - 0: The maximum resident set size (KB) = 500240 + 0: The total amount of wall time = 359.267595 + 0: The maximum resident set size (KB) = 501308 Test 099 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3466,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.664198 - 0: The maximum resident set size (KB) = 1012508 + 0: The total amount of wall time = 322.786973 + 0: The maximum resident set size (KB) = 1017024 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3520,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 507.776479 - 0: The maximum resident set size (KB) = 946132 + 0: The total amount of wall time = 519.851531 + 0: The maximum resident set size (KB) = 954820 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3574,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 278.281809 - 0: The maximum resident set size (KB) = 909632 + 0: The total amount of wall time = 293.214990 + 0: The maximum resident set size (KB) = 900932 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3628,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 273.703949 - 0: The maximum resident set size (KB) = 851960 + 0: The total amount of wall time = 282.262387 + 0: The maximum resident set size (KB) = 860500 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3682,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 481.008686 - 0: The maximum resident set size (KB) = 970388 + 0: The total amount of wall time = 493.331705 + 0: The maximum resident set size (KB) = 970632 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 268.154322 - 0: The maximum resident set size (KB) = 888792 + 0: The total amount of wall time = 246.833977 + 0: The maximum resident set size (KB) = 886056 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.835953 - 0: The maximum resident set size (KB) = 866148 + 0: The total amount of wall time = 283.959567 + 0: The maximum resident set size (KB) = 859356 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3836,42 +3836,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 354.252344 - 0: The maximum resident set size (KB) = 907864 + 0: The total amount of wall time = 390.372456 + 0: The maximum resident set size (KB) = 913792 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.950916 - 0: The maximum resident set size (KB) = 828820 + 0: The total amount of wall time = 128.490293 + 0: The maximum resident set size (KB) = 836852 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.585995 - 0: The maximum resident set size (KB) = 793532 + 0: The total amount of wall time = 132.592204 + 0: The maximum resident set size (KB) = 786932 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3887,40 +3887,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 177.788986 - 0: The maximum resident set size (KB) = 1146336 + 0: The total amount of wall time = 176.439488 + 0: The maximum resident set size (KB) = 1148060 Test 110 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 75.906807 - 0: The maximum resident set size (KB) = 1095876 + 0: The total amount of wall time = 72.388285 + 0: The maximum resident set size (KB) = 1096308 Test 111 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.192765 - 0: The maximum resident set size (KB) = 1094940 + 0: The total amount of wall time = 87.784302 + 0: The maximum resident set size (KB) = 1092240 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3967,123 +3967,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 345.722727 - 0: The maximum resident set size (KB) = 965988 + 0: The total amount of wall time = 329.577750 + 0: The maximum resident set size (KB) = 977840 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.954370 - 0: The maximum resident set size (KB) = 1007924 + 0: The total amount of wall time = 355.026438 + 0: The maximum resident set size (KB) = 1008292 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.853376 - 0: The maximum resident set size (KB) = 1015524 + 0: The total amount of wall time = 345.958531 + 0: The maximum resident set size (KB) = 1010132 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1080.666601 - 0: The maximum resident set size (KB) = 1176720 + 0: The total amount of wall time = 1085.699756 + 0: The maximum resident set size (KB) = 1177212 Test 116 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_debug_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 624.339957 - 0: The maximum resident set size (KB) = 1121112 + 0: The total amount of wall time = 630.386111 + 0: The maximum resident set size (KB) = 1124912 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1083.185110 - 0: The maximum resident set size (KB) = 1250600 + 0: The total amount of wall time = 1088.618667 + 0: The maximum resident set size (KB) = 1243104 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/rap_control_dyn64_phy32_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.607459 - 0: The maximum resident set size (KB) = 1034996 + 0: The total amount of wall time = 354.821778 + 0: The maximum resident set size (KB) = 1033348 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 330.124055 - 0: The maximum resident set size (KB) = 1394160 + 0: The total amount of wall time = 314.843239 + 0: The maximum resident set size (KB) = 1319720 Test 120 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 426.902544 - 0: The maximum resident set size (KB) = 1713220 + 0: The total amount of wall time = 377.761933 + 0: The maximum resident set size (KB) = 1714608 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4092,14 +4092,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 500.178161 - 0: The maximum resident set size (KB) = 1418584 + 0: The total amount of wall time = 498.970234 + 0: The maximum resident set size (KB) = 1394280 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,14 +4108,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 904.458715 - 0: The maximum resident set size (KB) = 1495540 + 0: The total amount of wall time = 905.147685 + 0: The maximum resident set size (KB) = 1496680 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1012.227977 - 0: The maximum resident set size (KB) = 1514072 + 0: The total amount of wall time = 1010.893379 + 0: The maximum resident set size (KB) = 1501176 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_docn_intel Checking test 125 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,14 +4141,14 @@ Checking test 125 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 466.162499 - 0: The maximum resident set size (KB) = 1465772 + 0: The total amount of wall time = 461.813403 + 0: The maximum resident set size (KB) = 1468884 Test 125 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_docn_oisst_intel Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,118 +4156,118 @@ Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 469.350262 - 0: The maximum resident set size (KB) = 1427788 + 0: The total amount of wall time = 459.090651 + 0: The maximum resident set size (KB) = 1442304 Test 126 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_cfsr_intel Checking test 127 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.038169 - 0: The maximum resident set size (KB) = 1023072 + 0: The total amount of wall time = 202.223400 + 0: The maximum resident set size (KB) = 1024860 Test 127 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_restart_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_restart_cfsr_intel Checking test 128 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.139015 - 0: The maximum resident set size (KB) = 996988 + 0: The total amount of wall time = 119.018952 + 0: The maximum resident set size (KB) = 1000208 Test 128 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_gefs_intel Checking test 129 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.888556 - 0: The maximum resident set size (KB) = 897484 + 0: The total amount of wall time = 198.367406 + 0: The maximum resident set size (KB) = 902520 Test 129 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_iau_gefs_intel Checking test 130 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.831967 - 0: The maximum resident set size (KB) = 898744 + 0: The total amount of wall time = 223.004732 + 0: The maximum resident set size (KB) = 903660 Test 130 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_stochy_gefs_intel Checking test 131 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.316807 - 0: The maximum resident set size (KB) = 900416 + 0: The total amount of wall time = 232.897382 + 0: The maximum resident set size (KB) = 905456 Test 131 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_ciceC_cfsr_intel Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.590471 - 0: The maximum resident set size (KB) = 1027088 + 0: The total amount of wall time = 236.831424 + 0: The maximum resident set size (KB) = 1026444 Test 132 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_bulk_cfsr_intel Checking test 133 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.584703 - 0: The maximum resident set size (KB) = 1023772 + 0: The total amount of wall time = 255.058295 + 0: The maximum resident set size (KB) = 1027864 Test 133 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_bulk_gefs_intel Checking test 134 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.466851 - 0: The maximum resident set size (KB) = 904056 + 0: The total amount of wall time = 228.827150 + 0: The maximum resident set size (KB) = 902008 Test 134 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_mx025_cfsr_intel Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4276,14 +4276,14 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 548.341689 - 0: The maximum resident set size (KB) = 835680 + 0: The total amount of wall time = 548.797206 + 0: The maximum resident set size (KB) = 857572 Test 135 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_mx025_gefs_intel Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4292,77 +4292,77 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 529.885962 - 0: The maximum resident set size (KB) = 808060 + 0: The total amount of wall time = 538.575468 + 0: The maximum resident set size (KB) = 809624 Test 136 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_multiple_files_cfsr_intel Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.544398 - 0: The maximum resident set size (KB) = 1033292 + 0: The total amount of wall time = 221.311429 + 0: The maximum resident set size (KB) = 1030560 Test 137 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_3072x1536_cfsr_intel Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 316.867077 - 0: The maximum resident set size (KB) = 2302048 + 0: The total amount of wall time = 298.326382 + 0: The maximum resident set size (KB) = 2366224 Test 138 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_gfs_intel Checking test 139 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 310.008471 - 0: The maximum resident set size (KB) = 2367036 + 0: The total amount of wall time = 289.348216 + 0: The maximum resident set size (KB) = 2367372 Test 139 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_debug_cfsr_intel Checking test 140 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 456.977915 - 0: The maximum resident set size (KB) = 976796 + 0: The total amount of wall time = 459.786881 + 0: The maximum resident set size (KB) = 983408 Test 140 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_cfsr_faster_intel Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.659575 - 0: The maximum resident set size (KB) = 1025612 + 0: The total amount of wall time = 204.473697 + 0: The maximum resident set size (KB) = 1027424 Test 141 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_lnd_gswp3_intel Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4371,14 +4371,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.027375 - 0: The maximum resident set size (KB) = 222560 + 0: The total amount of wall time = 9.232386 + 0: The maximum resident set size (KB) = 220580 Test 142 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_lnd_gswp3_rst_intel Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4387,14 +4387,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 15.750430 - 0: The maximum resident set size (KB) = 220328 + 0: The total amount of wall time = 18.599291 + 0: The maximum resident set size (KB) = 221936 Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_atmlnd_sbs_intel Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4479,14 +4479,14 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.704184 - 0: The maximum resident set size (KB) = 1615752 + 0: The total amount of wall time = 282.071664 + 0: The maximum resident set size (KB) = 1618120 Test 144 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmwav_control_noaero_p8_intel Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4529,14 +4529,14 @@ Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 130.630387 - 0: The maximum resident set size (KB) = 1570484 + 0: The total amount of wall time = 126.371149 + 0: The maximum resident set size (KB) = 1587564 Test 145 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_atmwav_intel Checking test 146 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4580,14 +4580,14 @@ Checking test 146 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 118.570768 - 0: The maximum resident set size (KB) = 593468 + 0: The total amount of wall time = 118.463693 + 0: The maximum resident set size (KB) = 604884 Test 146 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4631,14 +4631,14 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 314.644092 - 0: The maximum resident set size (KB) = 1676048 + 0: The total amount of wall time = 312.047353 + 0: The maximum resident set size (KB) = 1658412 Test 147 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 384.233888 - 0: The maximum resident set size (KB) = 1672756 + 0: The total amount of wall time = 384.313267 + 0: The maximum resident set size (KB) = 1678740 Test 148 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_42332/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4733,12 +4733,12 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 381.650454 - 0: The maximum resident set size (KB) = 1708880 + 0: The total amount of wall time = 379.205945 + 0: The maximum resident set size (KB) = 1707700 Test 149 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun Sep 17 22:27:00 UTC 2023 -Elapsed time: 02h:01m:31s. Have a nice day! +Tue Sep 19 21:04:41 UTC 2023 +Elapsed time: 02h:20m:56s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 9e1fb49e5f..2e798c182a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ -Fri Sep 15 19:14:04 CDT 2023 +Tue Sep 19 19:57:23 CDT 2023 Start Regression test -Testing UFSWM Hash: a5012ee7030309bc386e1caea0febb9130e2cdd5 +Testing UFSWM Hash: 15c7fde52750a00920dc4a4b429bab4a1890ca12 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,46 +15,46 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 669 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 411 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 760 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 796 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 608 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 681 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 137 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 764 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 324 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 769 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 833 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 765 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 762 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 877 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1104 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 272 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 819 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1101 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 659 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 591 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 836 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 732 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 760 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 736 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 139 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 211 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 235 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 741 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 256 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 784 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 749 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 671 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 728 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 751 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1125 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 859 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 356 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 867 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1062 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.543325 - 0: The maximum resident set size (KB) = 3170772 + 0: The total amount of wall time = 307.372064 + 0: The maximum resident set size (KB) = 3161456 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 217.133111 - 0: The maximum resident set size (KB) = 1709752 + 0: The total amount of wall time = 223.468469 + 0: The maximum resident set size (KB) = 1706248 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.272829 - 0: The maximum resident set size (KB) = 3205908 + 0: The total amount of wall time = 340.713372 + 0: The maximum resident set size (KB) = 3209608 Test 003 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.116423 - 0: The maximum resident set size (KB) = 3253436 + 0: The total amount of wall time = 204.218324 + 0: The maximum resident set size (KB) = 3255368 Test 004 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.891510 - 0: The maximum resident set size (KB) = 3218164 + 0: The total amount of wall time = 343.333767 + 0: The maximum resident set size (KB) = 3222876 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.120385 - 0: The maximum resident set size (KB) = 3088584 + 0: The total amount of wall time = 207.532378 + 0: The maximum resident set size (KB) = 3092884 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.912405 - 0: The maximum resident set size (KB) = 3544436 + 0: The total amount of wall time = 365.978228 + 0: The maximum resident set size (KB) = 3553464 Test 007 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.446121 - 0: The maximum resident set size (KB) = 3202624 + 0: The total amount of wall time = 341.692867 + 0: The maximum resident set size (KB) = 3198188 Test 008 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_mpi_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.921176 - 0: The maximum resident set size (KB) = 3059908 + 0: The total amount of wall time = 287.081264 + 0: The maximum resident set size (KB) = 2994716 Test 009 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.835625 - 0: The maximum resident set size (KB) = 3218060 + 0: The total amount of wall time = 340.786750 + 0: The maximum resident set size (KB) = 3214556 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 587.985791 - 0: The maximum resident set size (KB) = 3322788 + 0: The total amount of wall time = 586.142785 + 0: The maximum resident set size (KB) = 3328072 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 414.482642 - 0: The maximum resident set size (KB) = 3556676 + 0: The total amount of wall time = 386.729834 + 0: The maximum resident set size (KB) = 3620132 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 745.804956 - 0: The maximum resident set size (KB) = 4118300 + 0: The total amount of wall time = 783.919668 + 0: The maximum resident set size (KB) = 4086984 Test 013 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 506.036997 - 0: The maximum resident set size (KB) = 4381136 + 0: The total amount of wall time = 503.276739 + 0: The maximum resident set size (KB) = 4370592 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.665010 - 0: The maximum resident set size (KB) = 1744376 + 0: The total amount of wall time = 260.113085 + 0: The maximum resident set size (KB) = 1735860 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.018054 - 0: The maximum resident set size (KB) = 1779104 + 0: The total amount of wall time = 261.141925 + 0: The maximum resident set size (KB) = 1781156 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 544.850071 - 0: The maximum resident set size (KB) = 3241868 + 0: The total amount of wall time = 541.535170 + 0: The maximum resident set size (KB) = 3245660 Test 017 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.310731 - 0: The maximum resident set size (KB) = 1755416 + 0: The total amount of wall time = 381.364802 + 0: The maximum resident set size (KB) = 1755160 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.132566 - 0: The maximum resident set size (KB) = 1780092 + 0: The total amount of wall time = 267.184380 + 0: The maximum resident set size (KB) = 1781112 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.443742 - 0: The maximum resident set size (KB) = 2837568 + 0: The total amount of wall time = 502.826924 + 0: The maximum resident set size (KB) = 2821172 Test 020 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.299650 - 0: The maximum resident set size (KB) = 3209640 + 0: The total amount of wall time = 322.398820 + 0: The maximum resident set size (KB) = 3136176 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1213.843484 - 0: The maximum resident set size (KB) = 1776924 + 0: The total amount of wall time = 1216.300520 + 0: The maximum resident set size (KB) = 1776548 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 598.410359 - 0: The maximum resident set size (KB) = 1137416 + 0: The total amount of wall time = 592.910488 + 0: The maximum resident set size (KB) = 1156300 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1062.470587 - 0: The maximum resident set size (KB) = 1687168 + 0: The total amount of wall time = 1069.502156 + 0: The maximum resident set size (KB) = 1677200 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1366.520682 - 0: The maximum resident set size (KB) = 1721948 + 0: The total amount of wall time = 1380.468315 + 0: The maximum resident set size (KB) = 1727324 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.586126 - 0: The maximum resident set size (KB) = 692908 + 0: The total amount of wall time = 197.859840 + 0: The maximum resident set size (KB) = 652644 Test 026 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,18 +1705,18 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.608893 - 0: The maximum resident set size (KB) = 639692 + 0: The total amount of wall time = 132.915807 + 0: The maximum resident set size (KB) = 641488 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.631683 - 0: The maximum resident set size (KB) = 647952 + 0: The total amount of wall time = 139.751696 + 0: The maximum resident set size (KB) = 648760 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.341380 - 0: The maximum resident set size (KB) = 642204 + 0: The total amount of wall time = 136.212582 + 0: The maximum resident set size (KB) = 642340 Test 029 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.920257 - 0: The maximum resident set size (KB) = 642080 + 0: The total amount of wall time = 138.256865 + 0: The maximum resident set size (KB) = 646016 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 347.437753 -0: The maximum resident set size (KB) = 834580 +0: The total amount of wall time = 346.108989 +0: The maximum resident set size (KB) = 834516 Test 031 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.241914 - 0: The maximum resident set size (KB) = 788972 + 0: The total amount of wall time = 531.656356 + 0: The maximum resident set size (KB) = 789356 Test 032 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 749.660258 - 0: The maximum resident set size (KB) = 1388060 + 0: The total amount of wall time = 580.786439 + 0: The maximum resident set size (KB) = 1351092 Test 033 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 513.343681 - 0: The maximum resident set size (KB) = 1459348 + 0: The total amount of wall time = 512.435234 + 0: The maximum resident set size (KB) = 1454852 Test 034 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.000531 - 0: The maximum resident set size (KB) = 645184 + 0: The total amount of wall time = 91.386595 + 0: The maximum resident set size (KB) = 651780 Test 035 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.875599 - 0: The maximum resident set size (KB) = 555404 + 0: The total amount of wall time = 50.543584 + 0: The maximum resident set size (KB) = 558676 Test 036 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.839605 - 0: The maximum resident set size (KB) = 650384 + 0: The total amount of wall time = 84.233236 + 0: The maximum resident set size (KB) = 646324 Test 037 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.648287 - 0: The maximum resident set size (KB) = 642196 + 0: The total amount of wall time = 138.280531 + 0: The maximum resident set size (KB) = 646384 Test 038 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.649924 - 0: The maximum resident set size (KB) = 642320 + 0: The total amount of wall time = 137.621693 + 0: The maximum resident set size (KB) = 644680 Test 039 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.486122 - 0: The maximum resident set size (KB) = 1622200 + 0: The total amount of wall time = 170.656931 + 0: The maximum resident set size (KB) = 1570376 Test 040 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.760148 - 0: The maximum resident set size (KB) = 940548 + 0: The total amount of wall time = 88.896954 + 0: The maximum resident set size (KB) = 932912 Test 041 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.080322 - 0: The maximum resident set size (KB) = 1633316 + 0: The total amount of wall time = 172.902519 + 0: The maximum resident set size (KB) = 1626088 Test 042 control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_restart_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 92.747867 - 0: The maximum resident set size (KB) = 878796 + 0: The total amount of wall time = 92.236559 + 0: The maximum resident set size (KB) = 878636 Test 043 control_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.910186 - 0: The maximum resident set size (KB) = 1600436 + 0: The total amount of wall time = 181.956494 + 0: The maximum resident set size (KB) = 1602756 Test 044 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.070885 - 0: The maximum resident set size (KB) = 1704484 + 0: The total amount of wall time = 181.842682 + 0: The maximum resident set size (KB) = 1701536 Test 045 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.066637 - 0: The maximum resident set size (KB) = 1631460 + 0: The total amount of wall time = 312.010018 + 0: The maximum resident set size (KB) = 1617372 Test 046 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 226.055622 - 0: The maximum resident set size (KB) = 1684944 + 0: The total amount of wall time = 231.741322 + 0: The maximum resident set size (KB) = 1691844 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.827694 - 0: The maximum resident set size (KB) = 1628924 + 0: The total amount of wall time = 173.761551 + 0: The maximum resident set size (KB) = 1624812 Test 048 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.911090 - 0: The maximum resident set size (KB) = 1634996 + 0: The total amount of wall time = 195.313798 + 0: The maximum resident set size (KB) = 1637012 Test 049 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.318155 - 0: The maximum resident set size (KB) = 1061024 + 0: The total amount of wall time = 292.387591 + 0: The maximum resident set size (KB) = 1097696 Test 050 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.496223 - 0: The maximum resident set size (KB) = 1091084 + 0: The total amount of wall time = 150.864160 + 0: The maximum resident set size (KB) = 1088316 Test 051 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.314522 - 0: The maximum resident set size (KB) = 1098904 + 0: The total amount of wall time = 292.286883 + 0: The maximum resident set size (KB) = 1099132 Test 052 regional_control_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_restart_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.491142 - 0: The maximum resident set size (KB) = 1088440 + 0: The total amount of wall time = 150.147842 + 0: The maximum resident set size (KB) = 1088188 Test 053 regional_restart_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.420669 - 0: The maximum resident set size (KB) = 1092200 + 0: The total amount of wall time = 310.556758 + 0: The maximum resident set size (KB) = 1098900 Test 054 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 200.121869 - 0: The maximum resident set size (KB) = 1081656 + 0: The total amount of wall time = 202.199358 + 0: The maximum resident set size (KB) = 1071932 Test 055 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 285.160104 - 0: The maximum resident set size (KB) = 1364752 + 0: The total amount of wall time = 286.641462 + 0: The maximum resident set size (KB) = 1367724 Test 056 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 284.965276 - 0: The maximum resident set size (KB) = 1092036 + 0: The total amount of wall time = 287.761686 + 0: The maximum resident set size (KB) = 1092336 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_2dwrtdecomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 288.887587 - 0: The maximum resident set size (KB) = 1092800 + 0: The total amount of wall time = 289.552712 + 0: The maximum resident set size (KB) = 1099440 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 369.070876 - 0: The maximum resident set size (KB) = 917044 + 0: The total amount of wall time = 370.000991 + 0: The maximum resident set size (KB) = 920144 Test 059 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.869939 - 0: The maximum resident set size (KB) = 1243584 + 0: The total amount of wall time = 455.725450 + 0: The maximum resident set size (KB) = 1246712 Test 060 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.230275 - 0: The maximum resident set size (KB) = 1205152 + 0: The total amount of wall time = 268.544165 + 0: The maximum resident set size (KB) = 1210272 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 473.755983 - 0: The maximum resident set size (KB) = 1171380 + 0: The total amount of wall time = 472.373023 + 0: The maximum resident set size (KB) = 1168296 Test 062 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 455.615947 - 0: The maximum resident set size (KB) = 1320724 + 0: The total amount of wall time = 454.740956 + 0: The maximum resident set size (KB) = 1325604 Test 063 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.664957 - 0: The maximum resident set size (KB) = 1147888 + 0: The total amount of wall time = 227.922042 + 0: The maximum resident set size (KB) = 1148364 Test 064 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 452.037650 - 0: The maximum resident set size (KB) = 1242924 + 0: The total amount of wall time = 449.924456 + 0: The maximum resident set size (KB) = 1247136 Test 065 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 475.289962 - 0: The maximum resident set size (KB) = 1173964 + 0: The total amount of wall time = 475.285796 + 0: The maximum resident set size (KB) = 1175836 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 332.814561 - 0: The maximum resident set size (KB) = 1182316 + 0: The total amount of wall time = 336.885323 + 0: The maximum resident set size (KB) = 1177540 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 433.100171 - 0: The maximum resident set size (KB) = 1187628 + 0: The total amount of wall time = 430.898433 + 0: The maximum resident set size (KB) = 1187508 Test 068 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 433.484098 - 0: The maximum resident set size (KB) = 1032192 + 0: The total amount of wall time = 430.161346 + 0: The maximum resident set size (KB) = 1086856 Test 069 hrrr_control_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 471.928964 - 0: The maximum resident set size (KB) = 1124488 + 0: The total amount of wall time = 447.593226 + 0: The maximum resident set size (KB) = 1123836 Test 070 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 363.050227 - 0: The maximum resident set size (KB) = 1132540 + 0: The total amount of wall time = 364.623396 + 0: The maximum resident set size (KB) = 1134636 Test 071 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.876030 - 0: The maximum resident set size (KB) = 1117492 + 0: The total amount of wall time = 320.876241 + 0: The maximum resident set size (KB) = 1114320 Test 072 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.284721 - 0: The maximum resident set size (KB) = 1024028 + 0: The total amount of wall time = 325.378091 + 0: The maximum resident set size (KB) = 1024428 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 442.161765 - 0: The maximum resident set size (KB) = 1205736 + 0: The total amount of wall time = 441.778572 + 0: The maximum resident set size (KB) = 1201268 Test 074 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.965329 - 0: The maximum resident set size (KB) = 801428 + 0: The total amount of wall time = 527.117517 + 0: The maximum resident set size (KB) = 800828 Test 075 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.708049 - 0: The maximum resident set size (KB) = 926036 + 0: The total amount of wall time = 516.254937 + 0: The maximum resident set size (KB) = 908880 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_gf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.027377 - 0: The maximum resident set size (KB) = 1227288 + 0: The total amount of wall time = 447.407508 + 0: The maximum resident set size (KB) = 1235184 Test 077 hrrr_gf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_c3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,14 +3472,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 453.081531 - 0: The maximum resident set size (KB) = 1234308 + 0: The total amount of wall time = 449.896574 + 0: The maximum resident set size (KB) = 1232516 Test 078 hrrr_c3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3490,14 +3490,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.180828 - 0: The maximum resident set size (KB) = 818160 + 0: The total amount of wall time = 340.152649 + 0: The maximum resident set size (KB) = 819812 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3508,14 +3508,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.905561 - 0: The maximum resident set size (KB) = 815436 + 0: The total amount of wall time = 337.713279 + 0: The maximum resident set size (KB) = 816632 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3526,26 +3526,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.690262 - 0: The maximum resident set size (KB) = 812008 + 0: The total amount of wall time = 187.717954 + 0: The maximum resident set size (KB) = 811824 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.721373 - 0: The maximum resident set size (KB) = 703456 + 0: The total amount of wall time = 115.491021 + 0: The maximum resident set size (KB) = 710904 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3592,14 +3592,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.106836 - 0: The maximum resident set size (KB) = 1587544 + 0: The total amount of wall time = 154.769183 + 0: The maximum resident set size (KB) = 1612676 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.128311 - 0: The maximum resident set size (KB) = 1094592 + 0: The total amount of wall time = 264.082562 + 0: The maximum resident set size (KB) = 1092036 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3644,348 +3644,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.116316 - 0: The maximum resident set size (KB) = 802468 + 0: The total amount of wall time = 151.842709 + 0: The maximum resident set size (KB) = 799536 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.887417 - 0: The maximum resident set size (KB) = 799752 + 0: The total amount of wall time = 154.491537 + 0: The maximum resident set size (KB) = 798840 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.863345 - 0: The maximum resident set size (KB) = 808928 + 0: The total amount of wall time = 172.244611 + 0: The maximum resident set size (KB) = 808668 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.203896 - 0: The maximum resident set size (KB) = 808636 + 0: The total amount of wall time = 155.411866 + 0: The maximum resident set size (KB) = 801500 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.993851 - 0: The maximum resident set size (KB) = 851604 + 0: The total amount of wall time = 231.555884 + 0: The maximum resident set size (KB) = 854216 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.636253 - 0: The maximum resident set size (KB) = 851548 + 0: The total amount of wall time = 233.904512 + 0: The maximum resident set size (KB) = 852128 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.153299 - 0: The maximum resident set size (KB) = 816336 + 0: The total amount of wall time = 155.502178 + 0: The maximum resident set size (KB) = 814012 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.045110 - 0: The maximum resident set size (KB) = 862308 + 0: The total amount of wall time = 159.869276 + 0: The maximum resident set size (KB) = 855512 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.078029 - 0: The maximum resident set size (KB) = 1643028 + 0: The total amount of wall time = 176.607476 + 0: The maximum resident set size (KB) = 1631024 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1029.518485 - 0: The maximum resident set size (KB) = 1108848 + 0: The total amount of wall time = 1017.533024 + 0: The maximum resident set size (KB) = 1109060 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.444383 - 0: The maximum resident set size (KB) = 1160480 + 0: The total amount of wall time = 275.878220 + 0: The maximum resident set size (KB) = 1190264 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.971337 - 0: The maximum resident set size (KB) = 1188876 + 0: The total amount of wall time = 275.721024 + 0: The maximum resident set size (KB) = 1184308 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.980625 - 0: The maximum resident set size (KB) = 1198088 + 0: The total amount of wall time = 280.701843 + 0: The maximum resident set size (KB) = 1191260 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.930575 - 0: The maximum resident set size (KB) = 1269668 + 0: The total amount of wall time = 287.951739 + 0: The maximum resident set size (KB) = 1266656 Test 098 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.868598 - 0: The maximum resident set size (KB) = 1196920 + 0: The total amount of wall time = 289.856715 + 0: The maximum resident set size (KB) = 1194856 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_unified_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.237636 - 0: The maximum resident set size (KB) = 1199228 + 0: The total amount of wall time = 288.251003 + 0: The maximum resident set size (KB) = 1204292 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.662524 - 0: The maximum resident set size (KB) = 1192656 + 0: The total amount of wall time = 282.992059 + 0: The maximum resident set size (KB) = 1189528 Test 101 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.805123 - 0: The maximum resident set size (KB) = 1198088 + 0: The total amount of wall time = 289.402789 + 0: The maximum resident set size (KB) = 1133376 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.238459 - 0: The maximum resident set size (KB) = 1189192 + 0: The total amount of wall time = 270.655982 + 0: The maximum resident set size (KB) = 1185416 Test 103 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.276378 - 0: The maximum resident set size (KB) = 1190708 + 0: The total amount of wall time = 277.713163 + 0: The maximum resident set size (KB) = 1187980 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.392657 - 0: The maximum resident set size (KB) = 1184560 + 0: The total amount of wall time = 459.010892 + 0: The maximum resident set size (KB) = 1191712 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.702008 - 0: The maximum resident set size (KB) = 1183628 + 0: The total amount of wall time = 275.386244 + 0: The maximum resident set size (KB) = 1179220 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.314261 - 0: The maximum resident set size (KB) = 1200688 + 0: The total amount of wall time = 366.994053 + 0: The maximum resident set size (KB) = 1207380 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.991155 - 0: The maximum resident set size (KB) = 1192104 + 0: The total amount of wall time = 277.435063 + 0: The maximum resident set size (KB) = 1191424 Test 108 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.724149 - 0: The maximum resident set size (KB) = 593036 + 0: The total amount of wall time = 287.059652 + 0: The maximum resident set size (KB) = 588952 Test 109 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3996,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 248.188467 - 0: The maximum resident set size (KB) = 1094336 + 0: The total amount of wall time = 247.461504 + 0: The maximum resident set size (KB) = 1111216 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4050,14 +4050,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 367.313322 - 0: The maximum resident set size (KB) = 1104484 + 0: The total amount of wall time = 371.914924 + 0: The maximum resident set size (KB) = 1111176 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.654294 - 0: The maximum resident set size (KB) = 995344 + 0: The total amount of wall time = 192.014556 + 0: The maximum resident set size (KB) = 1035304 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.516067 - 0: The maximum resident set size (KB) = 987196 + 0: The total amount of wall time = 193.687381 + 0: The maximum resident set size (KB) = 986160 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 389.927210 - 0: The maximum resident set size (KB) = 1077044 + 0: The total amount of wall time = 382.505826 + 0: The maximum resident set size (KB) = 1127828 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.835707 - 0: The maximum resident set size (KB) = 982928 + 0: The total amount of wall time = 166.759898 + 0: The maximum resident set size (KB) = 977888 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4320,14 +4320,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 201.937086 - 0: The maximum resident set size (KB) = 981276 + 0: The total amount of wall time = 205.752277 + 0: The maximum resident set size (KB) = 990456 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4366,42 +4366,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.312482 - 0: The maximum resident set size (KB) = 1053848 + 0: The total amount of wall time = 273.700240 + 0: The maximum resident set size (KB) = 1054400 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.661740 - 0: The maximum resident set size (KB) = 943084 + 0: The total amount of wall time = 99.554204 + 0: The maximum resident set size (KB) = 942092 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.993474 - 0: The maximum resident set size (KB) = 884912 + 0: The total amount of wall time = 104.505341 + 0: The maximum resident set size (KB) = 889516 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 115.735109 - 0: The maximum resident set size (KB) = 1252072 + 0: The total amount of wall time = 114.459780 + 0: The maximum resident set size (KB) = 1252576 Test 120 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 51.032680 - 0: The maximum resident set size (KB) = 1166148 + 0: The total amount of wall time = 50.015261 + 0: The maximum resident set size (KB) = 1166480 Test 121 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.953162 - 0: The maximum resident set size (KB) = 1192200 + 0: The total amount of wall time = 66.266995 + 0: The maximum resident set size (KB) = 1192688 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,123 +4497,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 259.144612 - 0: The maximum resident set size (KB) = 1098432 + 0: The total amount of wall time = 244.052206 + 0: The maximum resident set size (KB) = 1100808 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.476447 - 0: The maximum resident set size (KB) = 1080412 + 0: The total amount of wall time = 273.868077 + 0: The maximum resident set size (KB) = 1068188 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.746865 - 0: The maximum resident set size (KB) = 1069332 + 0: The total amount of wall time = 264.183238 + 0: The maximum resident set size (KB) = 1065156 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 851.027482 - 0: The maximum resident set size (KB) = 1273136 + 0: The total amount of wall time = 836.528656 + 0: The maximum resident set size (KB) = 1275252 Test 126 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_debug_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 490.290659 - 0: The maximum resident set size (KB) = 1202320 + 0: The total amount of wall time = 479.038346 + 0: The maximum resident set size (KB) = 1178700 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 841.503806 - 0: The maximum resident set size (KB) = 1344580 + 0: The total amount of wall time = 863.414028 + 0: The maximum resident set size (KB) = 1351888 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.967280 - 0: The maximum resident set size (KB) = 1106700 + 0: The total amount of wall time = 283.613011 + 0: The maximum resident set size (KB) = 1104884 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 249.250914 - 0: The maximum resident set size (KB) = 1251796 + 0: The total amount of wall time = 248.302468 + 0: The maximum resident set size (KB) = 1243080 -Test 130 hafs_regional_atm_intel PASS Tries: 2 +Test 130 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.932042 - 0: The maximum resident set size (KB) = 1587652 + 0: The total amount of wall time = 332.731498 + 0: The maximum resident set size (KB) = 1585568 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 384.935997 - 0: The maximum resident set size (KB) = 1427748 + 0: The total amount of wall time = 373.204713 + 0: The maximum resident set size (KB) = 1424856 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4638,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 729.902847 - 0: The maximum resident set size (KB) = 1457304 + 0: The total amount of wall time = 730.133454 + 0: The maximum resident set size (KB) = 1455996 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4656,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 845.087884 - 0: The maximum resident set size (KB) = 1478016 + 0: The total amount of wall time = 823.469679 + 0: The maximum resident set size (KB) = 1478776 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4685,14 +4685,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 342.901251 - 0: The maximum resident set size (KB) = 660816 + 0: The total amount of wall time = 341.537869 + 0: The maximum resident set size (KB) = 658896 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_1nest_atm_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4714,14 +4714,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 371.473913 - 0: The maximum resident set size (KB) = 503720 + 0: The total amount of wall time = 346.415681 + 0: The maximum resident set size (KB) = 506184 Test 136 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,14 +4730,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 405.674487 - 0: The maximum resident set size (KB) = 663244 + 0: The total amount of wall time = 392.377776 + 0: The maximum resident set size (KB) = 662248 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4784,14 +4784,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.416179 - 0: The maximum resident set size (KB) = 406312 + 0: The total amount of wall time = 165.837818 + 0: The maximum resident set size (KB) = 401744 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_1nest_atm_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4838,14 +4838,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.382678 - 0: The maximum resident set size (KB) = 376808 + 0: The total amount of wall time = 169.901685 + 0: The maximum resident set size (KB) = 376356 Test 139 hafs_global_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4927,14 +4927,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 435.764103 - 0: The maximum resident set size (KB) = 487004 + 0: The total amount of wall time = 429.481006 + 0: The maximum resident set size (KB) = 480960 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_multiple_4nests_atm_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5016,14 +5016,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 459.320786 - 0: The maximum resident set size (KB) = 474260 + 0: The total amount of wall time = 452.377919 + 0: The maximum resident set size (KB) = 476852 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 218.004935 - 0: The maximum resident set size (KB) = 670728 + 0: The total amount of wall time = 216.219352 + 0: The maximum resident set size (KB) = 675856 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 203.384540 - 0: The maximum resident set size (KB) = 667424 + 0: The total amount of wall time = 207.929262 + 0: The maximum resident set size (KB) = 622204 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,14 +5090,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 217.890834 - 0: The maximum resident set size (KB) = 535384 + 0: The total amount of wall time = 213.366195 + 0: The maximum resident set size (KB) = 532548 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5106,42 +5106,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 285.721737 - 0: The maximum resident set size (KB) = 721204 + 0: The total amount of wall time = 287.041458 + 0: The maximum resident set size (KB) = 719848 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 63.985171 - 0: The maximum resident set size (KB) = 420272 + 0: The total amount of wall time = 64.488258 + 0: The maximum resident set size (KB) = 416464 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 756.253884 - 0: The maximum resident set size (KB) = 732424 + 0: The total amount of wall time = 754.361140 + 0: The maximum resident set size (KB) = 729676 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5152,14 +5152,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 533.783561 - 0: The maximum resident set size (KB) = 814828 + 0: The total amount of wall time = 530.764540 + 0: The maximum resident set size (KB) = 808004 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,14 +5167,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.237018 - 0: The maximum resident set size (KB) = 1411332 + 0: The total amount of wall time = 337.627336 + 0: The maximum resident set size (KB) = 1411424 Test 149 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5182,131 +5182,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 338.737863 - 0: The maximum resident set size (KB) = 1390400 + 0: The total amount of wall time = 339.463853 + 0: The maximum resident set size (KB) = 1390180 Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 943.114535 - 0: The maximum resident set size (KB) = 1154648 + 0: The total amount of wall time = 947.915140 + 0: The maximum resident set size (KB) = 1154284 Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.960450 - 0: The maximum resident set size (KB) = 1119000 + 0: The total amount of wall time = 151.001764 + 0: The maximum resident set size (KB) = 1119624 Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_restart_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 93.448727 - 0: The maximum resident set size (KB) = 1069632 + 0: The total amount of wall time = 91.049051 + 0: The maximum resident set size (KB) = 1070984 Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.762431 - 0: The maximum resident set size (KB) = 998848 + 0: The total amount of wall time = 144.710962 + 0: The maximum resident set size (KB) = 997704 Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.370878 - 0: The maximum resident set size (KB) = 1003164 + 0: The total amount of wall time = 147.225557 + 0: The maximum resident set size (KB) = 1001312 Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.923562 - 0: The maximum resident set size (KB) = 1005080 + 0: The total amount of wall time = 146.055949 + 0: The maximum resident set size (KB) = 1003968 Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.845042 - 0: The maximum resident set size (KB) = 1120752 + 0: The total amount of wall time = 150.747198 + 0: The maximum resident set size (KB) = 1126848 Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.417430 - 0: The maximum resident set size (KB) = 1104236 + 0: The total amount of wall time = 146.875501 + 0: The maximum resident set size (KB) = 1117240 Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.564361 - 0: The maximum resident set size (KB) = 990560 + 0: The total amount of wall time = 142.544346 + 0: The maximum resident set size (KB) = 1003992 Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5315,14 +5315,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.854119 - 0: The maximum resident set size (KB) = 1036484 + 0: The total amount of wall time = 441.719755 + 0: The maximum resident set size (KB) = 1026924 Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5331,77 +5331,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.443721 - 0: The maximum resident set size (KB) = 1022900 + 0: The total amount of wall time = 451.202118 + 0: The maximum resident set size (KB) = 1015100 Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_multiple_files_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.511555 - 0: The maximum resident set size (KB) = 1123320 + 0: The total amount of wall time = 151.976513 + 0: The maximum resident set size (KB) = 1099412 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.995349 - 0: The maximum resident set size (KB) = 2418140 + 0: The total amount of wall time = 205.823374 + 0: The maximum resident set size (KB) = 2346376 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 208.445206 - 0: The maximum resident set size (KB) = 2471552 + 0: The total amount of wall time = 203.034099 + 0: The maximum resident set size (KB) = 2472284 Test 164 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.868077 - 0: The maximum resident set size (KB) = 1053292 + 0: The total amount of wall time = 352.577264 + 0: The maximum resident set size (KB) = 1052728 Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.578315 - 0: The maximum resident set size (KB) = 1110700 + 0: The total amount of wall time = 147.460355 + 0: The maximum resident set size (KB) = 1125456 Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.134113 - 0: The maximum resident set size (KB) = 257240 + 0: The total amount of wall time = 6.382204 + 0: The maximum resident set size (KB) = 253948 Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/datm_cdeps_lnd_gswp3_rst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.070392 - 0: The maximum resident set size (KB) = 259556 + 0: The total amount of wall time = 13.029727 + 0: The maximum resident set size (KB) = 258584 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5518,14 +5518,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 201.791964 - 0: The maximum resident set size (KB) = 1634064 + 0: The total amount of wall time = 206.990009 + 0: The maximum resident set size (KB) = 1633864 Test 169 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5568,14 +5568,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.760965 - 0: The maximum resident set size (KB) = 1657588 + 0: The total amount of wall time = 96.766713 + 0: The maximum resident set size (KB) = 1655644 Test 170 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.582377 - 0: The maximum resident set size (KB) = 661804 + 0: The total amount of wall time = 88.715349 + 0: The maximum resident set size (KB) = 667148 Test 171 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5670,14 +5670,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 228.887067 - 0: The maximum resident set size (KB) = 3010276 + 0: The total amount of wall time = 231.807583 + 0: The maximum resident set size (KB) = 3010680 Test 172 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.366673 - 0: The maximum resident set size (KB) = 3078604 + 0: The total amount of wall time = 284.215927 + 0: The maximum resident set size (KB) = 3070792 Test 173 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5772,14 +5772,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.201943 - 0: The maximum resident set size (KB) = 3089704 + 0: The total amount of wall time = 290.153576 + 0: The maximum resident set size (KB) = 3007840 Test 174 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5795,14 +5795,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 640.032559 - 0: The maximum resident set size (KB) = 5564832 + 0: The total amount of wall time = 627.617129 + 0: The maximum resident set size (KB) = 5571112 Test 175 regional_atmaq_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1233.160865 - 0: The maximum resident set size (KB) = 4959508 + 0: The total amount of wall time = 1223.416388 + 0: The maximum resident set size (KB) = 4958480 Test 176 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /work/noaa/epic/nandoam/stmp/nandoam/FV3_RT/rt_27860/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,12 +5839,12 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 565.243412 - 0: The maximum resident set size (KB) = 5605424 + 0: The total amount of wall time = 556.406917 + 0: The maximum resident set size (KB) = 5599352 Test 177 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Sep 15 20:43:22 CDT 2023 -Elapsed time: 01h:29m:20s. Have a nice day! +Tue Sep 19 21:23:00 CDT 2023 +Elapsed time: 01h:25m:38s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 43b9d347a8..fafc00224a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ -Fri Sep 15 16:07:40 UTC 2023 +Wed Sep 20 12:19:52 UTC 2023 Start Regression test -Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e +Testing UFSWM Hash: 904f5513b638c99ce2dde2b882331c0aad689a99 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) @@ -15,35 +15,36 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 577 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 450 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 749 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 661 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 551 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1060 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 660 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 991 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 495 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 776 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 931 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1380 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 594 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1011 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1296 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 386 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 672 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1415 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 672 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 373 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1133 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1501 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1516 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1881 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 708 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 2160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 710 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1100 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1766 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1276 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 2152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 1312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1923 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 729 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 2443 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1197 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1162 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 757 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 589 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 595 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 661 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 820 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -108,14 +109,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.024522 -The maximum resident set size (KB) = 2967092 +The total amount of wall time = 352.242326 +The maximum resident set size (KB) = 2967884 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -179,14 +180,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 252.511375 -The maximum resident set size (KB) = 1570672 +The total amount of wall time = 258.371091 +The maximum resident set size (KB) = 1569880 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -251,14 +252,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.350167 -The maximum resident set size (KB) = 2992736 +The total amount of wall time = 396.667439 +The maximum resident set size (KB) = 2996776 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -311,14 +312,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.197674 -The maximum resident set size (KB) = 3054008 +The total amount of wall time = 240.163945 +The maximum resident set size (KB) = 3057488 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -383,14 +384,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.528422 -The maximum resident set size (KB) = 3006792 +The total amount of wall time = 400.502333 +The maximum resident set size (KB) = 3006604 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -443,14 +444,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.656288 -The maximum resident set size (KB) = 2897296 +The total amount of wall time = 245.327767 +The maximum resident set size (KB) = 2893328 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -503,14 +504,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 347.858038 -The maximum resident set size (KB) = 3302940 +The total amount of wall time = 348.259888 +The maximum resident set size (KB) = 3299232 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -563,14 +564,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.101717 -The maximum resident set size (KB) = 2993172 +The total amount of wall time = 391.468872 +The maximum resident set size (KB) = 2992008 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -623,14 +624,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.400221 -The maximum resident set size (KB) = 2937768 +The total amount of wall time = 333.760979 +The maximum resident set size (KB) = 2928472 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -695,14 +696,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.171196 -The maximum resident set size (KB) = 2995208 +The total amount of wall time = 391.003305 +The maximum resident set size (KB) = 2992528 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -750,14 +751,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 794.351007 -The maximum resident set size (KB) = 3953636 +The total amount of wall time = 807.168545 +The maximum resident set size (KB) = 3953688 Test 011 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -805,14 +806,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 715.823564 -The maximum resident set size (KB) = 4248080 +The total amount of wall time = 627.141434 +The maximum resident set size (KB) = 4247468 Test 012 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -876,14 +877,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 285.427291 -The maximum resident set size (KB) = 1583720 +The total amount of wall time = 290.329593 +The maximum resident set size (KB) = 1583432 Test 013 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -945,14 +946,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.508083 -The maximum resident set size (KB) = 1625272 +The total amount of wall time = 302.974152 +The maximum resident set size (KB) = 1639080 Test 014 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1014,14 +1015,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.436998 -The maximum resident set size (KB) = 1626872 +The total amount of wall time = 304.307472 +The maximum resident set size (KB) = 1625616 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1071,14 +1072,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 442.918712 -The maximum resident set size (KB) = 2642720 +The total amount of wall time = 442.347024 +The maximum resident set size (KB) = 2643588 Test 016 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1143,14 +1144,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.226176 -The maximum resident set size (KB) = 2994820 +The total amount of wall time = 397.175747 +The maximum resident set size (KB) = 2996556 Test 017 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_pdlib_p8_intel Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1214,14 +1215,14 @@ Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1165.378774 -The maximum resident set size (KB) = 1593188 +The total amount of wall time = 1160.262894 +The maximum resident set size (KB) = 1600908 Test 018 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_pdlib_p8_intel Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1273,14 +1274,14 @@ Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 583.377831 -The maximum resident set size (KB) = 874892 +The total amount of wall time = 581.427207 +The maximum resident set size (KB) = 877096 Test 019 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_mpi_pdlib_p8_intel Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1344,14 +1345,14 @@ Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1072.994661 -The maximum resident set size (KB) = 1584588 +The total amount of wall time = 1072.551395 +The maximum resident set size (KB) = 1573680 Test 020 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_debug_pdlib_p8_intel Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1403,14 +1404,14 @@ Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1418.233179 -The maximum resident set size (KB) = 1626932 +The total amount of wall time = 1417.376609 +The maximum resident set size (KB) = 1626884 Test 021 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1421,14 +1422,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.558928 -The maximum resident set size (KB) = 565584 +The total amount of wall time = 224.629334 +The maximum resident set size (KB) = 561228 Test 022 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1455,14 +1456,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 136.832964 -The maximum resident set size (KB) = 514600 +The total amount of wall time = 134.436447 +The maximum resident set size (KB) = 510940 Test 023 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1478,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.011454 -The maximum resident set size (KB) = 521552 +The total amount of wall time = 141.415386 +The maximum resident set size (KB) = 518296 Test 024 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1495,14 +1496,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.989264 -The maximum resident set size (KB) = 511772 +The total amount of wall time = 144.764681 +The maximum resident set size (KB) = 516048 Test 025 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1513,14 +1514,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.358863 -The maximum resident set size (KB) = 515248 +The total amount of wall time = 135.378349 +The maximum resident set size (KB) = 515228 Test 026 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1559,14 +1560,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 326.898725 -The maximum resident set size (KB) = 670072 +The total amount of wall time = 328.167538 +The maximum resident set size (KB) = 670340 Test 027 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1577,14 +1578,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.578067 -The maximum resident set size (KB) = 611732 +The total amount of wall time = 533.791359 +The maximum resident set size (KB) = 616656 Test 028 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1595,14 +1596,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 570.370619 -The maximum resident set size (KB) = 1063212 +The total amount of wall time = 585.813094 +The maximum resident set size (KB) = 1068520 Test 029 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1645,14 +1646,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 500.275534 -The maximum resident set size (KB) = 1166220 +The total amount of wall time = 534.612149 +The maximum resident set size (KB) = 1167744 Test 030 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1663,28 +1664,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.813270 -The maximum resident set size (KB) = 518840 +The total amount of wall time = 100.423070 +The maximum resident set size (KB) = 518808 Test 031 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 51.097545 -The maximum resident set size (KB) = 348400 +The total amount of wall time = 51.330399 +The maximum resident set size (KB) = 347588 Test 032 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1695,14 +1696,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.251900 -The maximum resident set size (KB) = 514852 +The total amount of wall time = 93.151875 +The maximum resident set size (KB) = 519520 Test 033 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1718,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.385153 -The maximum resident set size (KB) = 513540 +The total amount of wall time = 147.723110 +The maximum resident set size (KB) = 516324 Test 034 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1739,14 +1740,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.506467 -The maximum resident set size (KB) = 515200 +The total amount of wall time = 137.744404 +The maximum resident set size (KB) = 512288 Test 035 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1794,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 182.547730 -The maximum resident set size (KB) = 1487648 +The total amount of wall time = 187.158113 +The maximum resident set size (KB) = 1491032 Test 036 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1839,14 +1840,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 103.200288 -The maximum resident set size (KB) = 701604 +The total amount of wall time = 112.211608 +The maximum resident set size (KB) = 705676 Test 037 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1893,14 +1894,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 180.445529 -The maximum resident set size (KB) = 1508496 +The total amount of wall time = 194.733266 +The maximum resident set size (KB) = 1495136 Test 038 control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1939,14 +1940,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 104.263597 -The maximum resident set size (KB) = 665732 +The total amount of wall time = 114.654855 +The maximum resident set size (KB) = 670864 Test 039 control_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,14 +1990,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 186.183191 -The maximum resident set size (KB) = 1486412 +The total amount of wall time = 200.024835 +The maximum resident set size (KB) = 1489224 Test 040 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2039,14 +2040,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 158.102650 -The maximum resident set size (KB) = 1568276 +The total amount of wall time = 166.200003 +The maximum resident set size (KB) = 1566688 Test 041 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2065,14 +2066,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 318.581629 -The maximum resident set size (KB) = 1492760 +The total amount of wall time = 331.002046 +The maximum resident set size (KB) = 1490820 Test 042 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2119,14 +2120,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 236.275814 -The maximum resident set size (KB) = 1546692 +The total amount of wall time = 246.393601 +The maximum resident set size (KB) = 1547780 Test 043 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2173,14 +2174,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 182.978418 -The maximum resident set size (KB) = 1492020 +The total amount of wall time = 192.826869 +The maximum resident set size (KB) = 1501460 Test 044 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2227,14 +2228,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 204.799606 -The maximum resident set size (KB) = 1495180 +The total amount of wall time = 222.739715 +The maximum resident set size (KB) = 1504564 Test 045 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2245,28 +2246,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.170619 -The maximum resident set size (KB) = 871868 +The total amount of wall time = 294.653110 +The maximum resident set size (KB) = 868464 Test 046 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.654229 -The maximum resident set size (KB) = 865724 +The total amount of wall time = 173.818546 +The maximum resident set size (KB) = 861924 Test 047 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2277,28 +2278,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.812088 -The maximum resident set size (KB) = 868784 +The total amount of wall time = 292.459574 +The maximum resident set size (KB) = 867516 Test 048 regional_control_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.633974 -The maximum resident set size (KB) = 862360 +The total amount of wall time = 159.904864 +The maximum resident set size (KB) = 863316 Test 049 regional_restart_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2309,14 +2310,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.014801 -The maximum resident set size (KB) = 867152 +The total amount of wall time = 311.131528 +The maximum resident set size (KB) = 865060 Test 050 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2327,14 +2328,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 172.201766 -The maximum resident set size (KB) = 913180 +The total amount of wall time = 182.066158 +The maximum resident set size (KB) = 907068 Test 051 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2342,28 +2343,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 283.777998 -The maximum resident set size (KB) = 1144220 +The total amount of wall time = 293.418018 +The maximum resident set size (KB) = 1142380 Test 052 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 282.093025 -The maximum resident set size (KB) = 862984 +The total amount of wall time = 306.190991 +The maximum resident set size (KB) = 862540 Test 053 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2374,14 +2375,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.514272 -The maximum resident set size (KB) = 867088 +The total amount of wall time = 300.856873 +The maximum resident set size (KB) = 870880 Test 054 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2392,14 +2393,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 375.600136 -The maximum resident set size (KB) = 620996 +The total amount of wall time = 363.705786 +The maximum resident set size (KB) = 621728 Test 055 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2446,14 +2447,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 406.991816 -The maximum resident set size (KB) = 895752 +The total amount of wall time = 413.601949 +The maximum resident set size (KB) = 898120 Test 056 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2464,14 +2465,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.956240 -The maximum resident set size (KB) = 1002028 +The total amount of wall time = 259.043835 +The maximum resident set size (KB) = 1003800 Test 057 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2519,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 419.702171 -The maximum resident set size (KB) = 891136 +The total amount of wall time = 425.311931 +The maximum resident set size (KB) = 891232 Test 058 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2573,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 369.931578 -The maximum resident set size (KB) = 972488 +The total amount of wall time = 373.269745 +The maximum resident set size (KB) = 980452 Test 059 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2618,14 +2619,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 209.977330 -The maximum resident set size (KB) = 806984 +The total amount of wall time = 209.761522 +The maximum resident set size (KB) = 808820 Test 060 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2672,14 +2673,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 407.988710 -The maximum resident set size (KB) = 899780 +The total amount of wall time = 414.634312 +The maximum resident set size (KB) = 895840 Test 061 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2726,14 +2727,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 421.641299 -The maximum resident set size (KB) = 894160 +The total amount of wall time = 434.387895 +The maximum resident set size (KB) = 896200 Test 062 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2772,14 +2773,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 302.461922 -The maximum resident set size (KB) = 815612 +The total amount of wall time = 302.744917 +The maximum resident set size (KB) = 817512 Test 063 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2826,14 +2827,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 399.339742 -The maximum resident set size (KB) = 888876 +The total amount of wall time = 401.508256 +The maximum resident set size (KB) = 892112 Test 064 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2848,14 +2849,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.045530 -The maximum resident set size (KB) = 579736 +The total amount of wall time = 470.400557 +The maximum resident set size (KB) = 578440 Test 065 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2870,14 +2871,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 453.870187 -The maximum resident set size (KB) = 567492 +The total amount of wall time = 467.033585 +The maximum resident set size (KB) = 573736 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2924,14 +2925,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 407.389850 -The maximum resident set size (KB) = 891640 +The total amount of wall time = 421.531415 +The maximum resident set size (KB) = 891616 Test 067 hrrr_gf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2978,14 +2979,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 408.482453 -The maximum resident set size (KB) = 895708 +The total amount of wall time = 422.322560 +The maximum resident set size (KB) = 891228 Test 068 hrrr_c3_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,14 +2997,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.657298 -The maximum resident set size (KB) = 580684 +The total amount of wall time = 346.985463 +The maximum resident set size (KB) = 579620 Test 069 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3014,14 +3015,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.169259 -The maximum resident set size (KB) = 578776 +The total amount of wall time = 346.232547 +The maximum resident set size (KB) = 577328 Test 070 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3032,26 +3033,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 186.738397 -The maximum resident set size (KB) = 553056 +The total amount of wall time = 188.435893 +The maximum resident set size (KB) = 550320 Test 071 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.345594 -The maximum resident set size (KB) = 329492 +The total amount of wall time = 119.003061 +The maximum resident set size (KB) = 331148 Test 072 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3098,14 +3099,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 182.812762 -The maximum resident set size (KB) = 1494628 +The total amount of wall time = 179.271403 +The maximum resident set size (KB) = 1494480 Test 073 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3116,14 +3117,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.384632 -The maximum resident set size (KB) = 870268 +The total amount of wall time = 277.947291 +The maximum resident set size (KB) = 865524 Test 074 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3150,348 +3151,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 160.368911 -The maximum resident set size (KB) = 672688 +The total amount of wall time = 163.432200 +The maximum resident set size (KB) = 673096 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.869798 -The maximum resident set size (KB) = 672248 +The total amount of wall time = 162.526695 +The maximum resident set size (KB) = 676240 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.924742 -The maximum resident set size (KB) = 683240 +The total amount of wall time = 184.327790 +The maximum resident set size (KB) = 684148 Test 077 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.596233 -The maximum resident set size (KB) = 684632 +The total amount of wall time = 166.187616 +The maximum resident set size (KB) = 678468 Test 078 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.560875 -The maximum resident set size (KB) = 712584 +The total amount of wall time = 260.519339 +The maximum resident set size (KB) = 717320 Test 079 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.005080 -The maximum resident set size (KB) = 716284 +The total amount of wall time = 257.301010 +The maximum resident set size (KB) = 715644 Test 080 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.408879 -The maximum resident set size (KB) = 689840 +The total amount of wall time = 166.715132 +The maximum resident set size (KB) = 688484 Test 081 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.488322 -The maximum resident set size (KB) = 733756 +The total amount of wall time = 169.895687 +The maximum resident set size (KB) = 735864 Test 082 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 192.233673 -The maximum resident set size (KB) = 1505480 +The total amount of wall time = 191.793067 +The maximum resident set size (KB) = 1508112 Test 083 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1041.996135 -The maximum resident set size (KB) = 884724 +The total amount of wall time = 1044.233499 +The maximum resident set size (KB) = 887592 Test 084 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.878520 -The maximum resident set size (KB) = 1054764 +The total amount of wall time = 301.109564 +The maximum resident set size (KB) = 1051884 Test 085 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.201147 -The maximum resident set size (KB) = 1048468 +The total amount of wall time = 294.899206 +The maximum resident set size (KB) = 1052544 Test 086 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.085551 -The maximum resident set size (KB) = 1051420 +The total amount of wall time = 301.607081 +The maximum resident set size (KB) = 1054564 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.274466 -The maximum resident set size (KB) = 1136400 +The total amount of wall time = 312.928808 +The maximum resident set size (KB) = 1135632 Test 088 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.262474 -The maximum resident set size (KB) = 1056008 +The total amount of wall time = 306.245281 +The maximum resident set size (KB) = 1050168 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.702970 -The maximum resident set size (KB) = 1055804 +The total amount of wall time = 306.020380 +The maximum resident set size (KB) = 1051016 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.350178 -The maximum resident set size (KB) = 1056760 +The total amount of wall time = 303.343982 +The maximum resident set size (KB) = 1053580 Test 091 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.856824 -The maximum resident set size (KB) = 1055712 +The total amount of wall time = 301.147043 +The maximum resident set size (KB) = 1056168 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.459613 -The maximum resident set size (KB) = 1053820 +The total amount of wall time = 294.893385 +The maximum resident set size (KB) = 1053812 Test 093 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.360864 -The maximum resident set size (KB) = 1060368 +The total amount of wall time = 299.064427 +The maximum resident set size (KB) = 1054952 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.340757 -The maximum resident set size (KB) = 1054168 +The total amount of wall time = 493.996070 +The maximum resident set size (KB) = 1049916 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.613588 -The maximum resident set size (KB) = 1049316 +The total amount of wall time = 293.171226 +The maximum resident set size (KB) = 1052588 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 355.139723 -The maximum resident set size (KB) = 1056120 +The total amount of wall time = 355.003337 +The maximum resident set size (KB) = 1055096 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.523373 -The maximum resident set size (KB) = 1051576 +The total amount of wall time = 298.896903 +The maximum resident set size (KB) = 1052400 Test 098 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.115409 -The maximum resident set size (KB) = 360596 +The total amount of wall time = 297.841948 +The maximum resident set size (KB) = 354880 Test 099 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3502,14 +3503,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.466429 -The maximum resident set size (KB) = 893776 +The total amount of wall time = 277.941808 +The maximum resident set size (KB) = 892492 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3556,14 +3557,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 343.523602 -The maximum resident set size (KB) = 779828 +The total amount of wall time = 363.936095 +The maximum resident set size (KB) = 780448 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3610,14 +3611,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 181.025965 -The maximum resident set size (KB) = 777560 +The total amount of wall time = 199.817601 +The maximum resident set size (KB) = 776668 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3664,14 +3665,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 183.515191 -The maximum resident set size (KB) = 783452 +The total amount of wall time = 187.710561 +The maximum resident set size (KB) = 787092 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3718,14 +3719,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 312.288060 -The maximum resident set size (KB) = 840296 +The total amount of wall time = 324.129632 +The maximum resident set size (KB) = 831800 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3772,14 +3773,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 163.610970 -The maximum resident set size (KB) = 820572 +The total amount of wall time = 167.746513 +The maximum resident set size (KB) = 827400 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,14 +3827,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 191.728589 -The maximum resident set size (KB) = 778200 +The total amount of wall time = 204.805719 +The maximum resident set size (KB) = 777496 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3872,42 +3873,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 256.099870 -The maximum resident set size (KB) = 705704 +The total amount of wall time = 248.743939 +The maximum resident set size (KB) = 706196 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 104.767197 -The maximum resident set size (KB) = 663256 +The total amount of wall time = 94.415038 +The maximum resident set size (KB) = 663416 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 101.448857 -The maximum resident set size (KB) = 625268 +The total amount of wall time = 99.921154 +The maximum resident set size (KB) = 628244 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3923,40 +3924,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 139.175968 -The maximum resident set size (KB) = 1054264 +The total amount of wall time = 135.276631 +The maximum resident set size (KB) = 1054336 Test 110 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 74.420048 -The maximum resident set size (KB) = 1061008 +The total amount of wall time = 79.800624 +The maximum resident set size (KB) = 1059948 Test 111 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.052632 -The maximum resident set size (KB) = 952564 +The total amount of wall time = 101.702406 +The maximum resident set size (KB) = 951884 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4003,123 +4004,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 250.753358 -The maximum resident set size (KB) = 805536 +The total amount of wall time = 235.300713 +The maximum resident set size (KB) = 809224 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.646740 -The maximum resident set size (KB) = 938852 +The total amount of wall time = 309.056668 +The maximum resident set size (KB) = 938216 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.520497 -The maximum resident set size (KB) = 936212 +The total amount of wall time = 298.657937 +The maximum resident set size (KB) = 937924 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 902.766349 -The maximum resident set size (KB) = 1089828 +The total amount of wall time = 900.761722 +The maximum resident set size (KB) = 1089512 Test 116 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 532.236596 -The maximum resident set size (KB) = 1092216 +The total amount of wall time = 523.228482 +The maximum resident set size (KB) = 1096028 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 909.080176 -The maximum resident set size (KB) = 1160296 +The total amount of wall time = 907.220882 +The maximum resident set size (KB) = 1159064 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.601628 -The maximum resident set size (KB) = 954884 +The total amount of wall time = 304.068979 +The maximum resident set size (KB) = 958336 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.033351 -The maximum resident set size (KB) = 1120700 +The total amount of wall time = 274.135650 +The maximum resident set size (KB) = 1117276 Test 120 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.725979 -The maximum resident set size (KB) = 1474228 +The total amount of wall time = 311.275705 +The maximum resident set size (KB) = 1480820 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4129,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 399.274943 -The maximum resident set size (KB) = 1100980 +The total amount of wall time = 404.278468 +The maximum resident set size (KB) = 1094760 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4144,14 +4145,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 717.269643 -The maximum resident set size (KB) = 1195080 +The total amount of wall time = 726.900098 +The maximum resident set size (KB) = 1185840 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,14 +4163,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 909.200649 -The maximum resident set size (KB) = 1164392 +The total amount of wall time = 905.384715 +The maximum resident set size (KB) = 1159608 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_1nest_atm_intel Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4191,14 +4192,14 @@ Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 326.765489 -The maximum resident set size (KB) = 533812 +The total amount of wall time = 320.798422 +The maximum resident set size (KB) = 534360 Test 125 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_1nest_atm_qr_intel Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4220,14 +4221,14 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 366.047474 -The maximum resident set size (KB) = 383160 +The total amount of wall time = 366.630528 +The maximum resident set size (KB) = 384612 Test 126 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4236,14 +4237,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 397.866959 -The maximum resident set size (KB) = 543680 +The total amount of wall time = 377.499597 +The maximum resident set size (KB) = 542916 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4290,14 +4291,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 174.025703 -The maximum resident set size (KB) = 305580 +The total amount of wall time = 167.961687 +The maximum resident set size (KB) = 302856 Test 128 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_1nest_atm_qr_intel Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,14 +4345,14 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 204.312208 -The maximum resident set size (KB) = 288728 +The total amount of wall time = 181.119653 +The maximum resident set size (KB) = 282516 Test 129 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_multiple_4nests_atm_intel Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4433,14 +4434,14 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 491.660286 -The maximum resident set size (KB) = 375904 +The total amount of wall time = 479.322226 +The maximum resident set size (KB) = 380824 Test 130 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_multiple_4nests_atm_qr_intel Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4522,14 +4523,14 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK -The total amount of wall time = 575.857641 -The maximum resident set size (KB) = 385244 +The total amount of wall time = 571.434562 +The maximum resident set size (KB) = 383136 Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_specified_moving_1nest_atm_intel Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4538,14 +4539,14 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 232.864248 -The maximum resident set size (KB) = 539164 +The total amount of wall time = 217.191513 +The maximum resident set size (KB) = 551308 Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_intel Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4567,14 +4568,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 215.516606 -The maximum resident set size (KB) = 559472 +The total amount of wall time = 203.135962 +The maximum resident set size (KB) = 550576 Test 133 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4596,14 +4597,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK -The total amount of wall time = 262.742433 -The maximum resident set size (KB) = 422308 +The total amount of wall time = 241.379117 +The maximum resident set size (KB) = 419412 Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4612,42 +4613,60 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 262.898404 -The maximum resident set size (KB) = 614208 +The total amount of wall time = 260.473942 +The maximum resident set size (KB) = 610360 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 95.853160 -The maximum resident set size (KB) = 320380 +The total amount of wall time = 86.342272 +The maximum resident set size (KB) = 321080 Test 136 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 811.635964 -The maximum resident set size (KB) = 625824 +The total amount of wall time = 840.189683 +The maximum resident set size (KB) = 625032 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 508.291471 +The maximum resident set size (KB) = 656720 + +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_atmlnd_sbs_intel Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4732,14 +4751,14 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 296.700118 -The maximum resident set size (KB) = 1546780 +The total amount of wall time = 288.422528 +The maximum resident set size (KB) = 1545644 Test 139 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_intel Checking test 140 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4783,14 +4802,14 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 259.095920 -The maximum resident set size (KB) = 2823848 +The total amount of wall time = 276.834623 +The maximum resident set size (KB) = 2826960 Test 140 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_rad_intel Checking test 141 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4834,14 +4853,14 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 295.942314 -The maximum resident set size (KB) = 2887720 +The total amount of wall time = 304.482545 +The maximum resident set size (KB) = 2889416 Test 141 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_rad_micro_intel Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4885,14 +4904,14 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 336.657269 -The maximum resident set size (KB) = 2896256 +The total amount of wall time = 321.884461 +The maximum resident set size (KB) = 2896420 Test 142 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_atmaq_intel Checking test 143 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4908,14 +4927,14 @@ Checking test 143 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 716.018091 -The maximum resident set size (KB) = 5323744 +The total amount of wall time = 704.179781 +The maximum resident set size (KB) = 5326276 Test 143 regional_atmaq_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_134152/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_atmaq_debug_intel Checking test 144 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4929,54 +4948,12 @@ Checking test 144 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 1433.864038 -The maximum resident set size (KB) = 4832500 +The total amount of wall time = 1374.437443 +The maximum resident set size (KB) = 4830680 Test 144 regional_atmaq_debug_intel PASS -FAILED TESTS: -compile_hafsw_faster_intel failed in run_compile - -REGRESSION TEST FAILED -Fri Sep 15 17:28:25 UTC 2023 -Elapsed time: 01h:20m:46s. Have a nice day! -Fri Sep 15 19:32:22 UTC 2023 -Start Regression test - -Testing UFSWM Hash: d9e07551e2339a8c2a21ee285e8252065a28333e -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile hafsw_faster_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48753/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 503.392445 -The maximum resident set size (KB) = 659272 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Sep 15 19:53:05 UTC 2023 -Elapsed time: 00h:20m:43s. Have a nice day! +Wed Sep 20 13:42:31 UTC 2023 +Elapsed time: 01h:22m:40s. Have a nice day! diff --git a/tests/module-setup.sh b/tests/module-setup.sh index ed6dacec0d..c58f881a88 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -22,6 +22,13 @@ elif [[ $MACHINE_ID = orion ]] ; then fi module purge +elif [[ $MACHINE_ID = hercules ]] ; then + # We are on Hercules + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/other/lmod/lmod/init/bash + fi + module purge + elif [[ $MACHINE_ID = s4 ]] ; then # We are on SSEC Wisconsin S4 if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/opnReqTest b/tests/opnReqTest index acc8a0b448..f7cded2d64 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -361,6 +361,30 @@ elif [[ $MACHINE_ID = orion ]]; then PTMP=$dprefix/stmp SCHEDULER=slurm +elif [[ $MACHINE_ID = hercules ]]; then + + module load contrib rocoto/1.3.5 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + + module use /work/noaa/epic/role-epic/spack-stack/modulefiles + module load ecflow/5.8.4-hercules + ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/ecflow-5.8.4-hercules/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + QUEUE=windfall + COMPILE_QUEUE=windfall + PARTITION=hercules + dprefix=/work2/noaa/epic/${USER} + DISKNM=/work/noaa/epic/hercules/UFS-WM_RT + STMP=$dprefix/stmp + PTMP=$dprefix/stmp + + SCHEDULER=slurm + cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN + elif [[ $MACHINE_ID = linux ]]; then PARTITION= @@ -538,6 +562,8 @@ if [[ $ECFLOW == true ]]; then EOF if [[ $MACHINE_ID == hera ]]; then QUEUE=batch + elif [[ $MACHINE_ID == hercules ]]; then + QUEUE=windfall elif [[ $MACHINE_ID == orion ]]; then QUEUE=batch else diff --git a/tests/rt.conf b/tests/rt.conf index 49ff6fece0..7f15d4ed7c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -175,7 +175,7 @@ RUN | rap_clm_lake_debug | - noaacloud RUN | rap_flake_debug | - noaacloud | baseline | COMPILE | wam_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | control_wam_debug | - noaacloud | baseline | +RUN | control_wam_debug | - noaacloud hercules | baseline | ### 32-bit physics tests ### COMPILE | rrfs_dyn32_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | - noaacloud | fv3 | @@ -308,109 +308,109 @@ RUN | regional_atmaq_faster | - jet wcoss2 acorn s4 ### GNU TESTS ### ### CCPP PROD tests ### -COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | + hera cheyenne | fv3 | -RUN | control_c48 | + hera cheyenne | baseline | -RUN | control_stochy | + hera cheyenne | baseline | -RUN | control_ras | + hera cheyenne | baseline | -RUN | control_p8 | + hera cheyenne | baseline | -RUN | control_flake | + hera cheyenne | baseline | - -COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control | + hera cheyenne | baseline | -RUN | rap_decomp | + hera cheyenne | | -RUN | rap_2threads | + hera cheyenne | | -RUN | rap_restart | + hera cheyenne | | rap_control -RUN | rap_sfcdiff | + hera cheyenne | baseline | -RUN | rap_sfcdiff_decomp | + hera cheyenne | | -RUN | rap_sfcdiff_restart | + hera cheyenne | | rap_sfcdiff -RUN | hrrr_control | + hera cheyenne | baseline | -RUN | hrrr_control_qr | + hera cheyenne | | -RUN | hrrr_control_2threads | + hera cheyenne | | -RUN | hrrr_control_decomp | + hera cheyenne | | -RUN | hrrr_control_restart | + hera cheyenne | | hrrr_control -RUN | hrrr_control_restart_qr | + hera cheyenne | | hrrr_control_qr -RUN | rrfs_v1beta | + hera cheyenne | baseline | -RUN | hrrr_gf | + hera cheyenne | baseline | +COMPILE | atm | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | + hera cheyenne hercules | fv3 | +RUN | control_c48 | + hera cheyenne hercules | baseline | +RUN | control_stochy | + hera cheyenne hercules | baseline | +RUN | control_ras | + hera cheyenne hercules | baseline | +RUN | control_p8 | + hera cheyenne hercules | baseline | +RUN | control_flake | + hera cheyenne hercules | baseline | + +COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | + hera cheyenne hercules | fv3 | +RUN | rap_control | + hera cheyenne hercules | baseline | +RUN | rap_decomp | + hera cheyenne hercules | | +RUN | rap_2threads | + hera cheyenne hercules | | +RUN | rap_restart | + hera cheyenne hercules | | rap_control +RUN | rap_sfcdiff | + hera cheyenne hercules | baseline | +RUN | rap_sfcdiff_decomp | + hera cheyenne hercules | | +RUN | rap_sfcdiff_restart | + hera cheyenne hercules | | rap_sfcdiff +RUN | hrrr_control | + hera cheyenne hercules | baseline | +RUN | hrrr_control_qr | + hera cheyenne hercules | | +RUN | hrrr_control_2threads | + hera cheyenne hercules | | +RUN | hrrr_control_decomp | + hera cheyenne hercules | | +RUN | hrrr_control_restart | + hera cheyenne hercules | | hrrr_control +RUN | hrrr_control_restart_qr | + hera cheyenne hercules | | hrrr_control_qr +RUN | rrfs_v1beta | + hera cheyenne hercules | baseline | +RUN | hrrr_gf | + hera cheyenne hercules | baseline | # Crashes on Cheyenne -# RUN | hrrr_c3 | + hera cheyenne | baseline | +# RUN | hrrr_c3 | + hera cheyenne hercules | baseline | ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | control_diag_debug | + hera cheyenne | baseline | -RUN | regional_debug | + hera cheyenne | baseline | -RUN | rap_control_debug | + hera cheyenne | baseline | -RUN | hrrr_control_debug | + hera cheyenne | baseline | -RUN | rap_diag_debug | + hera cheyenne | baseline | -RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera cheyenne | baseline | -RUN | rap_progcld_thompson_debug | + hera cheyenne | baseline | -RUN | rrfs_v1beta_debug | + hera cheyenne | baseline | -RUN | control_ras_debug | + hera cheyenne | baseline | -RUN | control_stochy_debug | + hera cheyenne | baseline | -RUN | control_debug_p8 | + hera cheyenne | baseline | -RUN | rap_flake_debug | + hera cheyenne | baseline | -RUN | rap_clm_lake_debug | + hera cheyenne | baseline | - - -COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | control_wam_debug | + hera cheyenne | baseline | +COMPILE | atm_dyn32_debug | gnu | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | + hera cheyenne hercules | fv3 | +RUN | control_diag_debug | + hera cheyenne hercules | baseline | +RUN | regional_debug | + hera cheyenne hercules | baseline | +RUN | rap_control_debug | + hera cheyenne hercules | baseline | +RUN | hrrr_control_debug | + hera cheyenne hercules | baseline | +RUN | rap_diag_debug | + hera cheyenne hercules | baseline | +RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera cheyenne hercules | baseline | +RUN | rap_progcld_thompson_debug | + hera cheyenne hercules | baseline | +RUN | rrfs_v1beta_debug | + hera cheyenne hercules | baseline | +RUN | control_ras_debug | + hera cheyenne hercules | baseline | +RUN | control_stochy_debug | + hera cheyenne hercules | baseline | +RUN | control_debug_p8 | + hera cheyenne hercules | baseline | +RUN | rap_flake_debug | + hera cheyenne hercules | baseline | +RUN | rap_clm_lake_debug | + hera cheyenne hercules | baseline | + + +COMPILE | wam_debug | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | + hera cheyenne hercules | fv3 | +RUN | control_wam_debug | + hera cheyenne | baseline | ### 32-bit physics tests ### -COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_qr_dyn32_phy32 | + hera cheyenne | | -RUN | rap_2threads_dyn32_phy32 | + hera cheyenne | | -RUN | hrrr_control_2threads_dyn32_phy32 | + hera cheyenne | | -RUN | hrrr_control_decomp_dyn32_phy32 | + hera cheyenne | | -RUN | rap_restart_dyn32_phy32 | + hera cheyenne | | rap_control_dyn32_phy32 -RUN | hrrr_control_restart_dyn32_phy32 | + hera cheyenne | | hrrr_control_dyn32_phy32 -RUN | hrrr_control_restart_qr_dyn32_phy32 | + hera cheyenne | | hrrr_control_qr_dyn32_phy32 -RUN | conus13km_control | + hera cheyenne | baseline | -RUN | conus13km_2threads | + hera cheyenne | | conus13km_control -RUN | conus13km_restart_mismatch | + hera cheyenne | baseline | conus13km_control +COMPILE | rrfs_dyn32_phy32 | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | + hera cheyenne hercules | fv3 | +RUN | rap_control_dyn32_phy32 | + hera cheyenne hercules | baseline | +RUN | hrrr_control_dyn32_phy32 | + hera cheyenne hercules | baseline | +RUN | hrrr_control_qr_dyn32_phy32 | + hera cheyenne hercules | | +RUN | rap_2threads_dyn32_phy32 | + hera cheyenne hercules | | +RUN | hrrr_control_2threads_dyn32_phy32 | + hera cheyenne hercules | | +RUN | hrrr_control_decomp_dyn32_phy32 | + hera cheyenne hercules | | +RUN | rap_restart_dyn32_phy32 | + hera cheyenne hercules | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | + hera cheyenne hercules | | hrrr_control_dyn32_phy32 +RUN | hrrr_control_restart_qr_dyn32_phy32 | + hera cheyenne hercules | | hrrr_control_qr_dyn32_phy32 +RUN | conus13km_control | + hera cheyenne hercules | baseline | +RUN | conus13km_2threads | + hera cheyenne hercules | | conus13km_control +RUN | conus13km_restart_mismatch | + hera cheyenne hercules | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | + hera cheyenne | | conus13km_control -# RUN | conus13km_decomp | + hera cheyenne | | conus13km_control -# RUN | conus13km_control_qr | + hera cheyenne | baseline | -# RUN | conus13km_restart_qr_mismatch | + hera cheyenne | baseline | conus13km_control +# RUN | conus13km_restart | + hera cheyenne hercules | | conus13km_control +# RUN | conus13km_decomp | + hera cheyenne hercules | | conus13km_control +# RUN | conus13km_control_qr | + hera cheyenne hercules | baseline | +# RUN | conus13km_restart_qr_mismatch | + hera cheyenne hercules | baseline | conus13km_control -COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn64_phy32 | + hera cheyenne | baseline | +COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne hercules | fv3 | +RUN | rap_control_dyn64_phy32 | + hera cheyenne hercules | baseline | -COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | rap_control_debug_dyn32_phy32 | + hera cheyenne | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | + hera cheyenne | baseline | -RUN | conus13km_debug | + hera cheyenne | baseline | -RUN | conus13km_debug_2threads | + hera cheyenne | | -RUN | conus13km_radar_tten_debug | + hera cheyenne | baseline | +COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne hercules | fv3 | +RUN | rap_control_debug_dyn32_phy32 | + hera cheyenne hercules | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | + hera cheyenne hercules | baseline | +RUN | conus13km_debug | + hera cheyenne hercules | baseline | +RUN | conus13km_debug_2threads | + hera cheyenne hercules | | +RUN | conus13km_radar_tten_debug | + hera cheyenne hercules | baseline | # Expected to fail: -# RUN | conus13km_debug_decomp | + hera cheyenne | | +# RUN | conus13km_debug_decomp | + hera cheyenne hercules | | -COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | rap_control_dyn64_phy32_debug | + hera cheyenne | baseline | +COMPILE | atm_dyn64_phy32_debug | gnu | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | + hera cheyenne hercules | fv3 | +RUN | rap_control_dyn64_phy32_debug | + hera cheyenne hercules | baseline | ### S2S tests ### -COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_control_p8 | + hera cheyenne | baseline | +COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne hercules | fv3 | +RUN | cpld_control_p8 | + hera cheyenne hercules | baseline | -COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_control_nowave_noaero_p8 | + hera cheyenne | baseline | +COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne hercules | fv3 | +RUN | cpld_control_nowave_noaero_p8 | + hera cheyenne hercules | baseline | -COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne | fv3 | -RUN | cpld_debug_p8 | + hera cheyenne | baseline | +COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera cheyenne hercules | fv3 | +RUN | cpld_debug_p8 | + hera cheyenne hercules | baseline | # Unstructured WW3 -COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera cheyenne | fv3 | -RUN | cpld_control_pdlib_p8 | + hera cheyenne | baseline | +COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera cheyenne hercules | fv3 | +RUN | cpld_control_pdlib_p8 | + hera cheyenne hercules | baseline | -COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera cheyenne | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera cheyenne | baseline | +COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera cheyenne hercules | fv3 | +RUN | cpld_debug_pdlib_p8 | + hera cheyenne hercules | baseline | ### CDEPS Data Atmosphere test ### -COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera cheyenne | fv3 | -RUN | datm_cdeps_control_cfsr | + hera cheyenne | baseline | +COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera cheyenne hercules | fv3 | +RUN | datm_cdeps_control_cfsr | + hera cheyenne hercules | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 2249764680..27d278c060 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -379,6 +379,30 @@ elif [[ $MACHINE_ID = orion ]]; then SCHEDULER=slurm +elif [[ $MACHINE_ID = hercules ]]; then + + module load contrib rocoto/1.3.5 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + + module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles + module load ecflow/5.8.4 + ECFLOW_START=/work/noaa/epic/role-epic/spack-stack/hercules/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + QUEUE=windfall + COMPILE_QUEUE=windfall + PARTITION=hercules + dprefix=/work2/noaa/stmp/${USER} + DISKNM=/work/noaa/epic/hercules/UFS-WM_RT + STMP=$dprefix/stmp + PTMP=$dprefix/stmp + + SCHEDULER=slurm + cp fv3_conf/fv3_slurm.IN_hercules fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hercules fv3_conf/compile_slurm.IN + elif [[ $MACHINE_ID = jet ]]; then module load rocoto/1.3.2 @@ -599,6 +623,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = hercules ]]; then + QUEUE=windfall + COMPILE_QUEUE=windfall + ROCOTO_SCHEDULER=slurm elif [[ $MACHINE_ID = s4 ]]; then QUEUE=s4 COMPILE_QUEUE=s4 @@ -675,6 +703,8 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = orion ]]; then QUEUE=batch + elif [[ $MACHINE_ID = hercules ]]; then + QUEUE=windfall elif [[ $MACHINE_ID = jet ]]; then QUEUE=batch elif [[ $MACHINE_ID = s4 ]]; then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 872c9cf083..26c2e7ddba 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,7 +347,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ " orion hera wcoss2 acorn cheyenne gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then + if [[ " orion hercules hera wcoss2 acorn cheyenne gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." if [[ $CMP_DATAONLY == false ]]; then @@ -463,6 +463,9 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == orion ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == hercules ]]; then + BUILD_WALLTIME="01:00:00" + fi if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi diff --git a/tests/run_test.sh b/tests/run_test.sh index 23d1ee7ce0..61c59c6b51 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " s4 hera orion gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " s4 hera orion hercules gaea jet cheyenne acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 module load nccmp From a75d5fe144b8d00f1d4660dff990046ed1de1f72 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Thu, 21 Sep 2023 14:55:56 -0400 Subject: [PATCH 03/10] update CICE (#1902) * update CICE * remove comment lines from genf90.pl preprocessing * Update bl_date.conf --- .../ufs/cdeps_share/shr_assert_mod.F90 | 189 - .../ufs/cdeps_share/shr_frz_mod.F90 | 10 - .../ufs/cdeps_share/shr_infnan_mod.F90 | 104 - CICE-interface/CICE | 2 +- tests/bl_date.conf | 2 +- tests/logs/RegressionTests_acorn.log | 5024 +++++------ tests/logs/RegressionTests_gaea.log | 2462 ++--- tests/logs/RegressionTests_hera.log | 7988 ++++++++--------- tests/logs/RegressionTests_hercules.log | 1975 ++-- tests/logs/RegressionTests_jet.log | 4656 +++++----- tests/logs/RegressionTests_orion.log | 3062 +++---- tests/logs/RegressionTests_wcoss2.log | 4680 +++++----- 12 files changed, 14929 insertions(+), 15225 deletions(-) diff --git a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 index 6e7c897a1f..3accfb1c1e 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 @@ -36,7 +36,6 @@ module shr_assert_mod ! Assert that a numerical value satisfies certain constraints. public :: shr_assert_in_domain -# 34 "shr_assert_mod.F90.in" interface shr_assert_all module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -55,7 +54,6 @@ module shr_assert_mod module procedure shr_assert_all_7d end interface -# 40 "shr_assert_mod.F90.in" interface shr_assert_any module procedure shr_assert ! DIMS 1,2,3,4,5,6,7 @@ -74,7 +72,6 @@ module shr_assert_mod module procedure shr_assert_any_7d end interface -# 46 "shr_assert_mod.F90.in" interface shr_assert_in_domain ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -176,7 +173,6 @@ module shr_assert_mod ! Private utilities. -# 54 "shr_assert_mod.F90.in" interface print_bad_loc ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 @@ -276,7 +272,6 @@ module shr_assert_mod module procedure print_bad_loc_7d_long end interface -# 60 "shr_assert_mod.F90.in" interface find_first_loc ! DIMS 0,1,2,3,4,5,6,7 module procedure find_first_loc_0d @@ -296,7 +291,6 @@ module shr_assert_mod module procedure find_first_loc_7d end interface -# 65 "shr_assert_mod.F90.in" interface within_tolerance ! TYPE double,real,int,long module procedure within_tolerance_double @@ -308,10 +302,8 @@ module shr_assert_mod module procedure within_tolerance_long end interface -# 70 "shr_assert_mod.F90.in" contains -# 72 "shr_assert_mod.F90.in" subroutine shr_assert(var, msg, file, line) ! Logical being asserted @@ -340,11 +332,9 @@ subroutine shr_assert(var, msg, file, line) call shr_sys_abort(full_msg) end if -# 100 "shr_assert_mod.F90.in" end subroutine shr_assert ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_1d(var, msg, file, line) ! Logical being asserted @@ -358,10 +348,8 @@ subroutine shr_assert_all_1d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_1d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_2d(var, msg, file, line) ! Logical being asserted @@ -375,10 +363,8 @@ subroutine shr_assert_all_2d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_2d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_3d(var, msg, file, line) ! Logical being asserted @@ -392,10 +378,8 @@ subroutine shr_assert_all_3d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_3d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_4d(var, msg, file, line) ! Logical being asserted @@ -409,10 +393,8 @@ subroutine shr_assert_all_4d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_4d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_5d(var, msg, file, line) ! Logical being asserted @@ -426,10 +408,8 @@ subroutine shr_assert_all_5d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_5d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_6d(var, msg, file, line) ! Logical being asserted @@ -443,10 +423,8 @@ subroutine shr_assert_all_6d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_6d ! DIMS 1,2,3,4,5,6,7 -# 103 "shr_assert_mod.F90.in" subroutine shr_assert_all_7d(var, msg, file, line) ! Logical being asserted @@ -460,11 +438,9 @@ subroutine shr_assert_all_7d(var, msg, file, line) call shr_assert(all(var), msg=msg, file=file, line=line) -# 116 "shr_assert_mod.F90.in" end subroutine shr_assert_all_7d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_1d(var, msg, file, line) ! Logical being asserted @@ -478,10 +454,8 @@ subroutine shr_assert_any_1d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_1d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_2d(var, msg, file, line) ! Logical being asserted @@ -495,10 +469,8 @@ subroutine shr_assert_any_2d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_2d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_3d(var, msg, file, line) ! Logical being asserted @@ -512,10 +484,8 @@ subroutine shr_assert_any_3d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_3d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_4d(var, msg, file, line) ! Logical being asserted @@ -529,10 +499,8 @@ subroutine shr_assert_any_4d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_4d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_5d(var, msg, file, line) ! Logical being asserted @@ -546,10 +514,8 @@ subroutine shr_assert_any_5d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_5d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_6d(var, msg, file, line) ! Logical being asserted @@ -563,10 +529,8 @@ subroutine shr_assert_any_6d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_6d ! DIMS 1,2,3,4,5,6,7 -# 119 "shr_assert_mod.F90.in" subroutine shr_assert_any_7d(var, msg, file, line) ! Logical being asserted @@ -580,7 +544,6 @@ subroutine shr_assert_any_7d(var, msg, file, line) call shr_assert(any(var), msg=msg, file=file, line=line) -# 132 "shr_assert_mod.F90.in" end subroutine shr_assert_any_7d !-------------------------------------------------------------------------- @@ -588,7 +551,6 @@ end subroutine shr_assert_any_7d ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -784,11 +746,9 @@ subroutine shr_assert_in_domain_0d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -984,11 +944,9 @@ subroutine shr_assert_in_domain_1d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1184,11 +1142,9 @@ subroutine shr_assert_in_domain_2d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1384,11 +1340,9 @@ subroutine shr_assert_in_domain_3d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1584,11 +1538,9 @@ subroutine shr_assert_in_domain_4d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1784,11 +1736,9 @@ subroutine shr_assert_in_domain_5d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -1984,11 +1934,9 @@ subroutine shr_assert_in_domain_6d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_double(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2184,11 +2132,9 @@ subroutine shr_assert_in_domain_7d_double(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2384,11 +2330,9 @@ subroutine shr_assert_in_domain_0d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2584,11 +2528,9 @@ subroutine shr_assert_in_domain_1d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2784,11 +2726,9 @@ subroutine shr_assert_in_domain_2d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -2984,11 +2924,9 @@ subroutine shr_assert_in_domain_3d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3184,11 +3122,9 @@ subroutine shr_assert_in_domain_4d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3384,11 +3320,9 @@ subroutine shr_assert_in_domain_5d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3584,11 +3518,9 @@ subroutine shr_assert_in_domain_6d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_real(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3784,11 +3716,9 @@ subroutine shr_assert_in_domain_7d_real(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -3984,11 +3914,9 @@ subroutine shr_assert_in_domain_0d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4184,11 +4112,9 @@ subroutine shr_assert_in_domain_1d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4384,11 +4310,9 @@ subroutine shr_assert_in_domain_2d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4584,11 +4508,9 @@ subroutine shr_assert_in_domain_3d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4784,11 +4706,9 @@ subroutine shr_assert_in_domain_4d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -4984,11 +4904,9 @@ subroutine shr_assert_in_domain_5d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5184,11 +5102,9 @@ subroutine shr_assert_in_domain_6d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_int(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5384,11 +5300,9 @@ subroutine shr_assert_in_domain_7d_int(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_0d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5584,11 +5498,9 @@ subroutine shr_assert_in_domain_0d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_1d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5784,11 +5696,9 @@ subroutine shr_assert_in_domain_1d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_2d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -5984,11 +5894,9 @@ subroutine shr_assert_in_domain_2d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_3d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6184,11 +6092,9 @@ subroutine shr_assert_in_domain_3d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_4d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6384,11 +6290,9 @@ subroutine shr_assert_in_domain_4d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_5d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6584,11 +6488,9 @@ subroutine shr_assert_in_domain_5d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_6d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6784,11 +6686,9 @@ subroutine shr_assert_in_domain_6d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 139 "shr_assert_mod.F90.in" subroutine shr_assert_in_domain_7d_long(var, varname, msg, & is_nan, lt, gt, le, ge, eq, ne, abs_tol) @@ -6984,7 +6884,6 @@ subroutine shr_assert_in_domain_7d_long(var, varname, msg, & #undef GEN_SIZE #undef GEN_ALL -# 334 "shr_assert_mod.F90.in" end subroutine shr_assert_in_domain_7d_long !-------------------------------------------------------------------------- @@ -6992,7 +6891,6 @@ end subroutine shr_assert_in_domain_7d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7023,11 +6921,9 @@ subroutine print_bad_loc_0d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7058,11 +6954,9 @@ subroutine print_bad_loc_1d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7094,11 +6988,9 @@ subroutine print_bad_loc_2d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7131,11 +7023,9 @@ subroutine print_bad_loc_3d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7169,11 +7059,9 @@ subroutine print_bad_loc_4d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7208,11 +7096,9 @@ subroutine print_bad_loc_5d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7248,11 +7134,9 @@ subroutine print_bad_loc_6d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_double(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7289,11 +7173,9 @@ subroutine print_bad_loc_7d_double(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_double ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7324,11 +7206,9 @@ subroutine print_bad_loc_0d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7359,11 +7239,9 @@ subroutine print_bad_loc_1d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7395,11 +7273,9 @@ subroutine print_bad_loc_2d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7432,11 +7308,9 @@ subroutine print_bad_loc_3d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7470,11 +7344,9 @@ subroutine print_bad_loc_4d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7509,11 +7381,9 @@ subroutine print_bad_loc_5d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7549,11 +7419,9 @@ subroutine print_bad_loc_6d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_real(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7590,11 +7458,9 @@ subroutine print_bad_loc_7d_real(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_real ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7625,11 +7491,9 @@ subroutine print_bad_loc_0d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7660,11 +7524,9 @@ subroutine print_bad_loc_1d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7696,11 +7558,9 @@ subroutine print_bad_loc_2d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7733,11 +7593,9 @@ subroutine print_bad_loc_3d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7771,11 +7629,9 @@ subroutine print_bad_loc_4d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7810,11 +7666,9 @@ subroutine print_bad_loc_5d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7850,11 +7704,9 @@ subroutine print_bad_loc_6d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_int(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7891,11 +7743,9 @@ subroutine print_bad_loc_7d_int(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_int ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_0d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7926,11 +7776,9 @@ subroutine print_bad_loc_0d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_0d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_1d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7961,11 +7809,9 @@ subroutine print_bad_loc_1d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_1d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_2d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -7997,11 +7843,9 @@ subroutine print_bad_loc_2d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_2d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_3d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8034,11 +7878,9 @@ subroutine print_bad_loc_3d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_3d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_4d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8072,11 +7914,9 @@ subroutine print_bad_loc_4d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_4d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_5d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8111,11 +7951,9 @@ subroutine print_bad_loc_5d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_5d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_6d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8151,11 +7989,9 @@ subroutine print_bad_loc_6d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_6d_long ! TYPE double,real,int,long ! DIMS 0,1,2,3,4,5,6,7 -# 341 "shr_assert_mod.F90.in" subroutine print_bad_loc_7d_long(var, loc_vec, varname) ! Print information about a bad location in an variable. ! For scalars, just print value. @@ -8192,14 +8028,12 @@ subroutine print_bad_loc_7d_long(var, loc_vec, varname) if (.false.) write(*,*) loc_vec #endif -# 371 "shr_assert_mod.F90.in" end subroutine print_bad_loc_7d_long !-------------------------------------------------------------------------- !-------------------------------------------------------------------------- ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_0d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8228,10 +8062,8 @@ pure function find_first_loc_0d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_0d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_1d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8260,10 +8092,8 @@ pure function find_first_loc_1d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_1d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_2d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8293,10 +8123,8 @@ pure function find_first_loc_2d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_2d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_3d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8327,10 +8155,8 @@ pure function find_first_loc_3d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_3d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_4d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8362,10 +8188,8 @@ pure function find_first_loc_4d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_4d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_5d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8398,10 +8222,8 @@ pure function find_first_loc_5d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_5d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_6d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8435,10 +8257,8 @@ pure function find_first_loc_6d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_6d ! DIMS 0,1,2,3,4,5,6,7 -# 377 "shr_assert_mod.F90.in" pure function find_first_loc_7d(mask) result (loc_vec) ! Inefficient but simple subroutine for finding the location of ! the first .true. value in an array. @@ -8473,11 +8293,9 @@ pure function find_first_loc_7d(mask) result (loc_vec) #endif -# 405 "shr_assert_mod.F90.in" end function find_first_loc_7d ! TYPE double,real,int,long -# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_double(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8505,10 +8323,8 @@ elemental function within_tolerance_double(expected, actual, tolerance) & end if end if -# 435 "shr_assert_mod.F90.in" end function within_tolerance_double ! TYPE double,real,int,long -# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_real(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8536,10 +8352,8 @@ elemental function within_tolerance_real(expected, actual, tolerance) & end if end if -# 435 "shr_assert_mod.F90.in" end function within_tolerance_real ! TYPE double,real,int,long -# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_int(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8567,10 +8381,8 @@ elemental function within_tolerance_int(expected, actual, tolerance) & end if end if -# 435 "shr_assert_mod.F90.in" end function within_tolerance_int ! TYPE double,real,int,long -# 408 "shr_assert_mod.F90.in" elemental function within_tolerance_long(expected, actual, tolerance) & result(is_in_tol) ! Precondition: tolerance must be >= 0. @@ -8598,7 +8410,6 @@ elemental function within_tolerance_long(expected, actual, tolerance) & end if end if -# 435 "shr_assert_mod.F90.in" end function within_tolerance_long end module shr_assert_mod diff --git a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 index 94c95bbf13..dd043839e0 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_frz_mod.F90 @@ -19,7 +19,6 @@ module shr_frz_mod !---------------------------------------------------------------------------- public :: shr_frz_freezetemp, shr_frz_freezetemp_init -# 18 "shr_frz_mod.F90.in" interface shr_frz_freezetemp module procedure shr_frz_freezetemp_0d module procedure shr_frz_freezetemp_1d @@ -36,11 +35,9 @@ module shr_frz_mod integer :: tfrz_option = TFREEZE_OPTION_UNINITIALIZED !=============================================================================== -# 34 "shr_frz_mod.F90.in" contains !=============================================================================== -# 37 "shr_frz_mod.F90.in" subroutine shr_frz_freezetemp_init(tfreeze_option, maintask) implicit none @@ -68,11 +65,9 @@ subroutine shr_frz_freezetemp_init(tfreeze_option, maintask) call shr_sys_abort(subname//' ERROR: not a valid tfreeze_option '//trim(tfreeze_option)) endif -# 64 "shr_frz_mod.F90.in" end subroutine shr_frz_freezetemp_init ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_0d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -115,10 +110,8 @@ function shr_frz_freezetemp_0d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_0d ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_1d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -161,10 +154,8 @@ function shr_frz_freezetemp_1d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_1d ! DIMS 0,1,2 -# 67 "shr_frz_mod.F90.in" function shr_frz_freezetemp_2d(s) result(shr_frz_freezetemp) !---------------------------------------------------------------------------- @@ -207,7 +198,6 @@ function shr_frz_freezetemp_2d(s) result(shr_frz_freezetemp) shr_frz_freezetemp = max(shr_frz_freezetemp,-2.0_R8) -# 109 "shr_frz_mod.F90.in" end function shr_frz_freezetemp_2d !=============================================================================== diff --git a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 index 0ceecfaaf2..7a818485c7 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 @@ -71,7 +71,6 @@ module shr_infnan_mod ! Locally defined isnan. #ifndef HAVE_IEEE_ARITHMETIC -# 69 "shr_infnan_mod.F90.in" interface shr_infnan_isnan ! TYPE double,real module procedure shr_infnan_isnan_double @@ -80,7 +79,6 @@ module shr_infnan_mod end interface #endif -# 75 "shr_infnan_mod.F90.in" interface shr_infnan_isinf ! TYPE double,real module procedure shr_infnan_isinf_double @@ -88,7 +86,6 @@ module shr_infnan_mod module procedure shr_infnan_isinf_real end interface -# 80 "shr_infnan_mod.F90.in" interface shr_infnan_isposinf ! TYPE double,real module procedure shr_infnan_isposinf_double @@ -96,7 +93,6 @@ module shr_infnan_mod module procedure shr_infnan_isposinf_real end interface -# 85 "shr_infnan_mod.F90.in" interface shr_infnan_isneginf ! TYPE double,real module procedure shr_infnan_isneginf_double @@ -124,7 +120,6 @@ module shr_infnan_mod end type shr_infnan_inf_type ! Allow assigning reals to NaN or Inf. -# 110 "shr_infnan_mod.F90.in" interface assignment(=) ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 @@ -225,13 +220,11 @@ module shr_infnan_mod end interface ! Conversion functions. -# 120 "shr_infnan_mod.F90.in" interface shr_infnan_to_r8 module procedure nan_r8 module procedure inf_r8 end interface -# 125 "shr_infnan_mod.F90.in" interface shr_infnan_to_r4 module procedure nan_r4 module procedure inf_r4 @@ -272,7 +265,6 @@ module shr_infnan_mod integer(i8), parameter :: dneginf_pat = ibset(dposinf_pat,bit_size(1_i8)-1) #endif -# 165 "shr_infnan_mod.F90.in" contains !--------------------------------------------------------------------- @@ -282,24 +274,20 @@ module shr_infnan_mod !--------------------------------------------------------------------- ! TYPE double,real -# 174 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_double(x) result(isinf) real(r8), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 180 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_double ! TYPE double,real -# 174 "shr_infnan_mod.F90.in" elemental function shr_infnan_isinf_real(x) result(isinf) real(r4), intent(in) :: x logical :: isinf isinf = shr_infnan_isposinf(x) .or. shr_infnan_isneginf(x) -# 180 "shr_infnan_mod.F90.in" end function shr_infnan_isinf_real #ifdef HAVE_IEEE_ARITHMETIC @@ -311,7 +299,6 @@ end function shr_infnan_isinf_real !--------------------------------------------------------------------- ! TYPE double,real -# 191 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -322,10 +309,8 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 201 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 191 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -336,11 +321,9 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (ieee_positive_inf == ieee_class(x)) -# 201 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 204 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -351,10 +334,8 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 214 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 204 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) use, intrinsic :: ieee_arithmetic, only: & ieee_class, & @@ -365,7 +346,6 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (ieee_negative_inf == ieee_class(x)) -# 214 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real #else @@ -374,24 +354,20 @@ end function shr_infnan_isneginf_real #ifdef CPRGNU ! NaN testing on gfortran. ! TYPE double,real -# 222 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_double(x) result(is_nan) real(r8), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 228 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_double ! TYPE double,real -# 222 "shr_infnan_mod.F90.in" elemental function shr_infnan_isnan_real(x) result(is_nan) real(r4), intent(in) :: x logical :: is_nan is_nan = isnan(x) -# 228 "shr_infnan_mod.F90.in" end function shr_infnan_isnan_real ! End GNU section. #endif @@ -402,7 +378,6 @@ end function shr_infnan_isnan_real !--------------------------------------------------------------------- ! TYPE double,real -# 238 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_double(x) result(isposinf) real(r8), intent(in) :: x logical :: isposinf @@ -414,10 +389,8 @@ elemental function shr_infnan_isposinf_double(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 249 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_double ! TYPE double,real -# 238 "shr_infnan_mod.F90.in" elemental function shr_infnan_isposinf_real(x) result(isposinf) real(r4), intent(in) :: x logical :: isposinf @@ -429,11 +402,9 @@ elemental function shr_infnan_isposinf_real(x) result(isposinf) isposinf = (x == transfer(posinf_pat,x)) -# 249 "shr_infnan_mod.F90.in" end function shr_infnan_isposinf_real ! TYPE double,real -# 252 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_double(x) result(isneginf) real(r8), intent(in) :: x logical :: isneginf @@ -445,10 +416,8 @@ elemental function shr_infnan_isneginf_double(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 263 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_double ! TYPE double,real -# 252 "shr_infnan_mod.F90.in" elemental function shr_infnan_isneginf_real(x) result(isneginf) real(r4), intent(in) :: x logical :: isneginf @@ -460,7 +429,6 @@ elemental function shr_infnan_isneginf_real(x) result(isneginf) isneginf = (x == transfer(neginf_pat,x)) -# 263 "shr_infnan_mod.F90.in" end function shr_infnan_isneginf_real ! End ieee_arithmetic conditional. @@ -484,7 +452,6 @@ end function shr_infnan_isneginf_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -523,11 +490,9 @@ pure subroutine set_nan_0d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -566,11 +531,9 @@ pure subroutine set_nan_1d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -609,11 +572,9 @@ pure subroutine set_nan_2d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -652,11 +613,9 @@ pure subroutine set_nan_3d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -695,11 +654,9 @@ pure subroutine set_nan_4d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -738,11 +695,9 @@ pure subroutine set_nan_5d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -781,11 +736,9 @@ pure subroutine set_nan_6d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_double(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -824,11 +777,9 @@ pure subroutine set_nan_7d_double(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_0d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -867,11 +818,9 @@ pure subroutine set_nan_0d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_1d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -910,11 +859,9 @@ pure subroutine set_nan_1d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_2d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -953,11 +900,9 @@ pure subroutine set_nan_2d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_3d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -996,11 +941,9 @@ pure subroutine set_nan_3d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_4d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1039,11 +982,9 @@ pure subroutine set_nan_4d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_5d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1082,11 +1023,9 @@ pure subroutine set_nan_5d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_6d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1125,11 +1064,9 @@ pure subroutine set_nan_6d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 286 "shr_infnan_mod.F90.in" pure subroutine set_nan_7d_real(output, nan) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1168,12 +1105,10 @@ pure subroutine set_nan_7d_real(output, nan) output = tmp -# 324 "shr_infnan_mod.F90.in" end subroutine set_nan_7d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1212,11 +1147,9 @@ pure subroutine set_inf_0d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1255,11 +1188,9 @@ pure subroutine set_inf_1d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1298,11 +1229,9 @@ pure subroutine set_inf_2d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1341,11 +1270,9 @@ pure subroutine set_inf_3d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1384,11 +1311,9 @@ pure subroutine set_inf_4d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1427,11 +1352,9 @@ pure subroutine set_inf_5d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1470,11 +1393,9 @@ pure subroutine set_inf_6d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_double(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1513,11 +1434,9 @@ pure subroutine set_inf_7d_double(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_double ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_0d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1556,11 +1475,9 @@ pure subroutine set_inf_0d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_0d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_1d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1599,11 +1516,9 @@ pure subroutine set_inf_1d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_1d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_2d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1642,11 +1557,9 @@ pure subroutine set_inf_2d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_2d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_3d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1685,11 +1598,9 @@ pure subroutine set_inf_3d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_3d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_4d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1728,11 +1639,9 @@ pure subroutine set_inf_4d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_4d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_5d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1771,11 +1680,9 @@ pure subroutine set_inf_5d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_5d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_6d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1814,11 +1721,9 @@ pure subroutine set_inf_6d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_6d_real ! TYPE double,real ! DIMS 0,1,2,3,4,5,6,7 -# 328 "shr_infnan_mod.F90.in" pure subroutine set_inf_7d_real(output, inf) #ifdef HAVE_IEEE_ARITHMETIC use, intrinsic :: ieee_arithmetic, only: & @@ -1857,7 +1762,6 @@ pure subroutine set_inf_7d_real(output, inf) output = tmp -# 366 "shr_infnan_mod.F90.in" end subroutine set_inf_7d_real !--------------------------------------------------------------------- @@ -1866,44 +1770,36 @@ end subroutine set_inf_7d_real ! Function methods to get reals from nan/inf types. !--------------------------------------------------------------------- -# 374 "shr_infnan_mod.F90.in" pure function nan_r8(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r8) :: output output = nan -# 380 "shr_infnan_mod.F90.in" end function nan_r8 -# 382 "shr_infnan_mod.F90.in" pure function nan_r4(nan) result(output) class(shr_infnan_nan_type), intent(in) :: nan real(r4) :: output output = nan -# 388 "shr_infnan_mod.F90.in" end function nan_r4 -# 390 "shr_infnan_mod.F90.in" pure function inf_r8(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r8) :: output output = inf -# 396 "shr_infnan_mod.F90.in" end function inf_r8 -# 398 "shr_infnan_mod.F90.in" pure function inf_r4(inf) result(output) class(shr_infnan_inf_type), intent(in) :: inf real(r4) :: output output = inf -# 404 "shr_infnan_mod.F90.in" end function inf_r4 end module shr_infnan_mod diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 2ed3c05c3c..25f1c54506 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 2ed3c05c3c515eb70af3a726ff392283af97c4a5 +Subproject commit 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 985bf6ff29..470f9e9bb1 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20230825 +export BL_DATE=20230920 diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 5c47b023aa..bc22759307 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,11 +1,11 @@ -Wed Sep 20 12:17:21 UTC 2023 +Thu Sep 21 14:17:11 UTC 2023 Start Regression test -Testing UFSWM Hash: 904f5513b638c99ce2dde2b882331c0aad689a99 +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,41 +15,41 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 384 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 470 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1027 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1425 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 664 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 569 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 346 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 404 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 377 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 593 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 724 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 638 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 704 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 848 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1342 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1040 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1078 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1050 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 680 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 541 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 529 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 295 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 709 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 845 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1196 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 726 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 638 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 924 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 198 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 407 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 257 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 570 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 243 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 616 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 1010 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 857 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 583 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 684 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1052 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 571 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1205 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1600 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1066 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -77,51 +77,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.783290 -The maximum resident set size (KB) = 2969036 +The total amount of wall time = 323.511075 +The maximum resident set size (KB) = 2966340 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -148,51 +148,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 240.219444 -The maximum resident set size (KB) = 1569492 +The total amount of wall time = 242.933103 +The maximum resident set size (KB) = 1564644 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -220,51 +220,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.479503 -The maximum resident set size (KB) = 2995160 +The total amount of wall time = 374.566654 +The maximum resident set size (KB) = 2996472 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -280,51 +280,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 218.030206 -The maximum resident set size (KB) = 3056548 +The total amount of wall time = 218.672511 +The maximum resident set size (KB) = 3058860 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -352,7 +352,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -383,20 +383,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.685094 -The maximum resident set size (KB) = 3008244 +The total amount of wall time = 374.372205 +The maximum resident set size (KB) = 3007572 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -412,7 +412,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -443,20 +443,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 223.121792 -The maximum resident set size (KB) = 2894744 +The total amount of wall time = 223.119378 +The maximum resident set size (KB) = 2899888 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -472,51 +472,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.073410 -The maximum resident set size (KB) = 3300004 +The total amount of wall time = 333.514169 +The maximum resident set size (KB) = 3302436 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -532,51 +532,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.547051 -The maximum resident set size (KB) = 2991648 +The total amount of wall time = 369.223944 +The maximum resident set size (KB) = 2993996 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -592,51 +592,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 313.655416 -The maximum resident set size (KB) = 2929484 +The total amount of wall time = 309.651372 +The maximum resident set size (KB) = 2928688 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -664,51 +664,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.355738 -The maximum resident set size (KB) = 2998672 +The total amount of wall time = 372.204259 +The maximum resident set size (KB) = 2998560 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -735,51 +735,51 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 271.727705 -The maximum resident set size (KB) = 1578988 +The total amount of wall time = 271.453945 +The maximum resident set size (KB) = 1575520 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -806,49 +806,49 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 287.886058 -The maximum resident set size (KB) = 1633628 +The total amount of wall time = 286.994947 +The maximum resident set size (KB) = 1640768 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -875,49 +875,49 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 286.249732 -The maximum resident set size (KB) = 1629308 +The total amount of wall time = 286.998719 +The maximum resident set size (KB) = 1641320 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -932,49 +932,49 @@ Checking test 014 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 425.596576 -The maximum resident set size (KB) = 2646496 +The total amount of wall time = 427.079344 +The maximum resident set size (KB) = 2646696 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1002,51 +1002,51 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.976331 -The maximum resident set size (KB) = 2997220 +The total amount of wall time = 366.814832 +The maximum resident set size (KB) = 2997008 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 211.839492 -The maximum resident set size (KB) = 566016 +The total amount of wall time = 212.121459 +The maximum resident set size (KB) = 565912 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.952537 -The maximum resident set size (KB) = 514592 +The total amount of wall time = 128.838275 +The maximum resident set size (KB) = 515280 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.932307 -The maximum resident set size (KB) = 522296 +The total amount of wall time = 135.262834 +The maximum resident set size (KB) = 526112 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.375894 -The maximum resident set size (KB) = 519528 +The total amount of wall time = 131.337762 +The maximum resident set size (KB) = 514888 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,60 +1149,60 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.755313 -The maximum resident set size (KB) = 518356 +The total amount of wall time = 133.524357 +The maximum resident set size (KB) = 517972 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 328.834576 -The maximum resident set size (KB) = 673624 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.478248 +The maximum resident set size (KB) = 672824 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 524.443509 -The maximum resident set size (KB) = 617380 +The total amount of wall time = 524.809062 +The maximum resident set size (KB) = 619360 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 558.812973 -The maximum resident set size (KB) = 1068740 +The total amount of wall time = 559.553592 +The maximum resident set size (KB) = 1068080 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1249,46 +1249,46 @@ Checking test 024 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 490.719298 -The maximum resident set size (KB) = 1170312 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 492.533058 +The maximum resident set size (KB) = 1174496 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.639388 -The maximum resident set size (KB) = 523428 +The total amount of wall time = 88.896230 +The maximum resident set size (KB) = 524016 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.059537 -The maximum resident set size (KB) = 354912 +The total amount of wall time = 48.407841 +The maximum resident set size (KB) = 352052 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.467133 -The maximum resident set size (KB) = 522780 +The total amount of wall time = 82.811239 +The maximum resident set size (KB) = 519964 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.008514 -The maximum resident set size (KB) = 516212 +The total amount of wall time = 132.769011 +The maximum resident set size (KB) = 517512 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.694950 -The maximum resident set size (KB) = 519840 +The total amount of wall time = 132.761434 +The maximum resident set size (KB) = 515596 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1397,92 +1397,92 @@ Checking test 030 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 170.027599 -The maximum resident set size (KB) = 1499292 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 169.614130 +The maximum resident set size (KB) = 1498872 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 91.913511 -The maximum resident set size (KB) = 703340 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 91.998455 +The maximum resident set size (KB) = 703368 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1497,7 +1497,7 @@ Checking test 032 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1529,21 +1529,21 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 170.266026 -The maximum resident set size (KB) = 1500220 +The total amount of wall time = 169.615894 +The maximum resident set size (KB) = 1504100 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1575,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 92.927551 -The maximum resident set size (KB) = 671868 +The total amount of wall time = 93.090505 +The maximum resident set size (KB) = 672368 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1593,46 +1593,46 @@ Checking test 034 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 172.736161 -The maximum resident set size (KB) = 1488136 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 173.407905 +The maximum resident set size (KB) = 1488976 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1643,46 +1643,46 @@ Checking test 035 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 146.711623 -The maximum resident set size (KB) = 1577512 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 148.256477 +The maximum resident set size (KB) = 1574844 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 307.596875 -The maximum resident set size (KB) = 1488532 +The total amount of wall time = 308.168593 +The maximum resident set size (KB) = 1501340 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1723,46 +1723,46 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 224.993991 -The maximum resident set size (KB) = 1548160 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 226.057666 +The maximum resident set size (KB) = 1548232 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,46 +1777,46 @@ Checking test 038 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 170.706606 -The maximum resident set size (KB) = 1500132 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 170.557943 +The maximum resident set size (KB) = 1496756 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1831,46 +1831,46 @@ Checking test 039 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 194.389208 -The maximum resident set size (KB) = 1504168 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 193.838653 +The maximum resident set size (KB) = 1503820 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 275.764227 -The maximum resident set size (KB) = 869992 +The total amount of wall time = 278.550173 +The maximum resident set size (KB) = 880556 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 147.733141 -The maximum resident set size (KB) = 868100 +The total amount of wall time = 146.782376 +The maximum resident set size (KB) = 868472 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 274.123039 -The maximum resident set size (KB) = 870404 +The total amount of wall time = 276.988486 +The maximum resident set size (KB) = 869536 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 147.573794 -The maximum resident set size (KB) = 871456 +The total amount of wall time = 148.548779 +The maximum resident set size (KB) = 864560 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.131751 -The maximum resident set size (KB) = 871308 +The total amount of wall time = 291.787685 +The maximum resident set size (KB) = 871224 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,29 +1963,29 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.679209 -The maximum resident set size (KB) = 912616 +The total amount of wall time = 162.905438 +The maximum resident set size (KB) = 909864 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 271.772855 -The maximum resident set size (KB) = 1146820 +The total amount of wall time = 273.710398 +The maximum resident set size (KB) = 1142880 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 275.111200 -The maximum resident set size (KB) = 870624 +The total amount of wall time = 278.106801 +The maximum resident set size (KB) = 875648 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 351.508177 -The maximum resident set size (KB) = 621616 +The total amount of wall time = 353.442441 +The maximum resident set size (KB) = 624284 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.677473 -The maximum resident set size (KB) = 872008 +The total amount of wall time = 307.630073 +The maximum resident set size (KB) = 873152 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 324.035918 -The maximum resident set size (KB) = 871232 +The total amount of wall time = 323.804311 +The maximum resident set size (KB) = 868416 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.510945 -The maximum resident set size (KB) = 913796 +The total amount of wall time = 183.129767 +The maximum resident set size (KB) = 913312 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2090,46 +2090,46 @@ Checking test 052 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 403.271118 -The maximum resident set size (KB) = 896820 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 401.388252 +The maximum resident set size (KB) = 897864 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.026656 -The maximum resident set size (KB) = 1006320 +The total amount of wall time = 233.372690 +The maximum resident set size (KB) = 1003144 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2162,46 +2162,46 @@ Checking test 054 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 416.010255 -The maximum resident set size (KB) = 902124 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 414.242867 +The maximum resident set size (KB) = 900952 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2216,92 +2216,92 @@ Checking test 055 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 362.315557 -The maximum resident set size (KB) = 981504 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 363.409065 +The maximum resident set size (KB) = 982288 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 204.868829 -The maximum resident set size (KB) = 812204 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 204.798155 +The maximum resident set size (KB) = 813648 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2316,46 +2316,46 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 402.600948 -The maximum resident set size (KB) = 903056 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 402.369438 +The maximum resident set size (KB) = 904708 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2370,92 +2370,92 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 418.282638 -The maximum resident set size (KB) = 902156 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 416.469913 +The maximum resident set size (KB) = 901732 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 297.679410 -The maximum resident set size (KB) = 816964 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 298.547787 +The maximum resident set size (KB) = 819384 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,46 +2470,46 @@ Checking test 060 hrrr_control_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 385.918965 -The maximum resident set size (KB) = 902088 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 388.107749 +The maximum resident set size (KB) = 897900 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,7 +2524,7 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2556,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 384.408358 -The maximum resident set size (KB) = 908324 +The total amount of wall time = 384.621083 +The maximum resident set size (KB) = 909684 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2578,46 +2578,46 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 397.884945 -The maximum resident set size (KB) = 898056 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 397.881056 +The maximum resident set size (KB) = 896696 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2632,74 +2632,74 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 344.946759 -The maximum resident set size (KB) = 971948 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 343.956078 +The maximum resident set size (KB) = 974364 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 286.112815 -The maximum resident set size (KB) = 770044 +The total amount of wall time = 285.779138 +The maximum resident set size (KB) = 769208 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 288.109077 -The maximum resident set size (KB) = 675876 +The total amount of wall time = 289.009642 +The maximum resident set size (KB) = 677364 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2714,46 +2714,46 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 395.511509 -The maximum resident set size (KB) = 897640 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 395.276012 +The maximum resident set size (KB) = 901072 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.034270 -The maximum resident set size (KB) = 586304 +The total amount of wall time = 465.648625 +The maximum resident set size (KB) = 584264 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 449.794704 -The maximum resident set size (KB) = 578904 +The total amount of wall time = 450.374661 +The maximum resident set size (KB) = 578184 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_gf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_gf_intel Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,100 +2812,100 @@ Checking test 069 hrrr_gf_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 403.221686 -The maximum resident set size (KB) = 902852 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 402.915958 +The maximum resident set size (KB) = 898612 Test 069 hrrr_gf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_c3_intel -Checking test 070 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 403.118727 -The maximum resident set size (KB) = 899252 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_c3_intel +Checking test 070 hrrr_c3_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 404.044085 +The maximum resident set size (KB) = 899876 Test 070 hrrr_c3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmg_intel Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2916,14 +2916,14 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.818293 -The maximum resident set size (KB) = 590820 +The total amount of wall time = 334.511408 +The maximum resident set size (KB) = 585956 Test 071 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2934,14 +2934,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 331.020581 -The maximum resident set size (KB) = 583668 +The total amount of wall time = 331.864343 +The maximum resident set size (KB) = 586020 Test 072 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2952,26 +2952,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.586367 -The maximum resident set size (KB) = 553396 +The total amount of wall time = 181.507902 +The maximum resident set size (KB) = 551176 Test 073 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.792113 -The maximum resident set size (KB) = 330676 +The total amount of wall time = 117.084738 +The maximum resident set size (KB) = 333448 Test 074 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2986,46 +2986,46 @@ Checking test 075 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 165.590002 -The maximum resident set size (KB) = 1495584 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 165.416680 +The maximum resident set size (KB) = 1492432 Test 075 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 271.748858 -The maximum resident set size (KB) = 868104 +The total amount of wall time = 267.914134 +The maximum resident set size (KB) = 872104 Test 076 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3070,348 +3070,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.555792 -The maximum resident set size (KB) = 675500 +The total amount of wall time = 159.269050 +The maximum resident set size (KB) = 678728 Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.110079 -The maximum resident set size (KB) = 680212 +The total amount of wall time = 158.159391 +The maximum resident set size (KB) = 679692 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.975252 -The maximum resident set size (KB) = 689892 +The total amount of wall time = 179.552720 +The maximum resident set size (KB) = 686460 Test 079 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.597892 -The maximum resident set size (KB) = 684540 +The total amount of wall time = 161.335865 +The maximum resident set size (KB) = 685296 Test 080 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.872282 -The maximum resident set size (KB) = 718876 +The total amount of wall time = 249.591935 +The maximum resident set size (KB) = 717652 Test 081 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 245.528114 -The maximum resident set size (KB) = 718376 +The total amount of wall time = 245.477622 +The maximum resident set size (KB) = 722080 Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.522030 -The maximum resident set size (KB) = 701064 +The total amount of wall time = 163.085638 +The maximum resident set size (KB) = 700816 Test 083 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.053462 -The maximum resident set size (KB) = 740944 +The total amount of wall time = 162.801543 +The maximum resident set size (KB) = 739884 Test 084 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.155737 -The maximum resident set size (KB) = 1514244 +The total amount of wall time = 181.910876 +The maximum resident set size (KB) = 1517148 Test 085 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.983216 -The maximum resident set size (KB) = 894200 +The total amount of wall time = 1043.527607 +The maximum resident set size (KB) = 893284 Test 086 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.914714 -The maximum resident set size (KB) = 1062200 +The total amount of wall time = 297.572668 +The maximum resident set size (KB) = 1056224 Test 087 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.013339 -The maximum resident set size (KB) = 1052092 +The total amount of wall time = 290.108754 +The maximum resident set size (KB) = 1051548 Test 088 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.009808 -The maximum resident set size (KB) = 1060172 +The total amount of wall time = 297.793774 +The maximum resident set size (KB) = 1063148 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.038425 -The maximum resident set size (KB) = 1142816 +The total amount of wall time = 308.726499 +The maximum resident set size (KB) = 1140020 Test 090 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.581903 -The maximum resident set size (KB) = 1057880 +The total amount of wall time = 304.877168 +The maximum resident set size (KB) = 1056536 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.013907 -The maximum resident set size (KB) = 1061464 +The total amount of wall time = 304.845583 +The maximum resident set size (KB) = 1059964 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.911145 -The maximum resident set size (KB) = 1062080 +The total amount of wall time = 300.316966 +The maximum resident set size (KB) = 1069876 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.163338 -The maximum resident set size (KB) = 1055656 +The total amount of wall time = 297.079363 +The maximum resident set size (KB) = 1060612 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.461976 -The maximum resident set size (KB) = 1058516 +The total amount of wall time = 293.396251 +The maximum resident set size (KB) = 1059368 Test 095 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.394259 -The maximum resident set size (KB) = 1063744 +The total amount of wall time = 298.687240 +The maximum resident set size (KB) = 1056936 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.855872 -The maximum resident set size (KB) = 1060976 +The total amount of wall time = 488.809468 +The maximum resident set size (KB) = 1054928 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.948088 -The maximum resident set size (KB) = 1054672 +The total amount of wall time = 292.902688 +The maximum resident set size (KB) = 1059180 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.521442 -The maximum resident set size (KB) = 1061448 +The total amount of wall time = 353.684469 +The maximum resident set size (KB) = 1062412 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.441741 -The maximum resident set size (KB) = 1060460 +The total amount of wall time = 298.251077 +The maximum resident set size (KB) = 1061168 Test 100 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.317919 -The maximum resident set size (KB) = 358252 +The total amount of wall time = 296.069157 +The maximum resident set size (KB) = 362124 Test 101 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 221.895988 -The maximum resident set size (KB) = 899060 +The total amount of wall time = 221.116737 +The maximum resident set size (KB) = 893956 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3444,46 +3444,46 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 333.938125 -The maximum resident set size (KB) = 777896 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 333.044399 +The maximum resident set size (KB) = 781964 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3498,46 +3498,46 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 174.932014 -The maximum resident set size (KB) = 775836 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 174.517787 +The maximum resident set size (KB) = 772924 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3552,7 +3552,7 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3584,14 +3584,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 174.854184 -The maximum resident set size (KB) = 788760 +The total amount of wall time = 174.648143 +The maximum resident set size (KB) = 788200 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3606,46 +3606,46 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 302.418928 -The maximum resident set size (KB) = 842588 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 303.265128 +The maximum resident set size (KB) = 833532 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3660,174 +3660,174 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 156.249980 -The maximum resident set size (KB) = 824792 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 156.640097 +The maximum resident set size (KB) = 827352 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_decomp_dyn32_phy32_intel -Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 181.824017 -The maximum resident set size (KB) = 776684 - -Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_restart_dyn32_phy32_intel -Checking test 109 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 246.369618 -The maximum resident set size (KB) = 707036 - +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_decomp_dyn32_phy32_intel +Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 181.928769 +The maximum resident set size (KB) = 779832 + +Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_restart_dyn32_phy32_intel +Checking test 109 rap_restart_dyn32_phy32_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 246.077288 +The maximum resident set size (KB) = 710020 + Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.495034 -The maximum resident set size (KB) = 668444 +The total amount of wall time = 91.248363 +The maximum resident set size (KB) = 671688 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.347748 -The maximum resident set size (KB) = 633000 +The total amount of wall time = 93.547728 +The maximum resident set size (KB) = 632576 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3836,47 +3836,47 @@ Checking test 112 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 113.961260 -The maximum resident set size (KB) = 1062444 +The total amount of wall time = 113.757383 +The maximum resident set size (KB) = 1062284 Test 112 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.331593 -The maximum resident set size (KB) = 1065680 +The total amount of wall time = 56.374769 +The maximum resident set size (KB) = 1066924 Test 113 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.341407 -The maximum resident set size (KB) = 954572 +The total amount of wall time = 69.700063 +The maximum resident set size (KB) = 960860 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3891,155 +3891,155 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 228.202100 -The maximum resident set size (KB) = 813412 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 227.753642 +The maximum resident set size (KB) = 815408 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.509264 -The maximum resident set size (KB) = 946112 +The total amount of wall time = 287.621388 +The maximum resident set size (KB) = 942824 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 281.631007 -The maximum resident set size (KB) = 943584 +The total amount of wall time = 281.268890 +The maximum resident set size (KB) = 940708 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 876.360138 -The maximum resident set size (KB) = 1091076 +The total amount of wall time = 886.865893 +The maximum resident set size (KB) = 1090556 Test 118 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 501.103692 -The maximum resident set size (KB) = 1094888 +The total amount of wall time = 503.213122 +The maximum resident set size (KB) = 1095824 Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 875.732408 -The maximum resident set size (KB) = 1163152 +The total amount of wall time = 876.640587 +The maximum resident set size (KB) = 1163684 Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.170135 -The maximum resident set size (KB) = 961400 +The total amount of wall time = 291.945968 +The maximum resident set size (KB) = 958128 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 246.316793 -The maximum resident set size (KB) = 1122620 +The total amount of wall time = 246.762986 +The maximum resident set size (KB) = 1140816 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 277.829060 -The maximum resident set size (KB) = 1510680 +The total amount of wall time = 284.140794 +The maximum resident set size (KB) = 1479712 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4048,14 +4048,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 374.335205 -The maximum resident set size (KB) = 1096408 +The total amount of wall time = 373.865560 +The maximum resident set size (KB) = 1097220 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 689.625066 -The maximum resident set size (KB) = 1195336 +The total amount of wall time = 689.424221 +The maximum resident set size (KB) = 1197624 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,51 +4082,51 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 877.057964 -The maximum resident set size (KB) = 1164320 +The total amount of wall time = 875.942459 +The maximum resident set size (KB) = 1169928 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 305.710725 -The maximum resident set size (KB) = 543352 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 305.592937 +The maximum resident set size (KB) = 540816 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4137,17 +4137,17 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 320.835571 -The maximum resident set size (KB) = 389252 +The total amount of wall time = 323.410758 +The maximum resident set size (KB) = 388632 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,76 +4156,76 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 368.210906 -The maximum resident set size (KB) = 535832 +The total amount of wall time = 369.944454 +The maximum resident set size (KB) = 548440 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 160.750058 -The maximum resident set size (KB) = 309476 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 161.427529 +The maximum resident set size (KB) = 307636 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4261,17 +4261,17 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 167.407977 -The maximum resident set size (KB) = 289040 +The total amount of wall time = 167.200156 +The maximum resident set size (KB) = 289412 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4289,78 +4289,78 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - -The total amount of wall time = 451.785086 -The maximum resident set size (KB) = 376840 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +The total amount of wall time = 452.209756 +The maximum resident set size (KB) = 375648 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4378,14 +4378,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4433,23 +4433,23 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - -The total amount of wall time = 495.109674 -The maximum resident set size (KB) = 390944 + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +The total amount of wall time = 493.484458 +The maximum resident set size (KB) = 388256 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,51 +4458,51 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 203.241984 -The maximum resident set size (KB) = 556048 +The total amount of wall time = 203.845443 +The maximum resident set size (KB) = 555828 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 190.722097 -The maximum resident set size (KB) = 553336 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 189.866719 +The maximum resident set size (KB) = 552336 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4513,17 +4513,17 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.914127 -The maximum resident set size (KB) = 428176 +The total amount of wall time = 210.093377 +The maximum resident set size (KB) = 422856 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4532,42 +4532,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 245.421229 -The maximum resident set size (KB) = 617092 +The total amount of wall time = 244.810253 +The maximum resident set size (KB) = 619340 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 80.870886 -The maximum resident set size (KB) = 327668 +The total amount of wall time = 82.991302 +The maximum resident set size (KB) = 328272 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 800.893562 -The maximum resident set size (KB) = 629116 +The total amount of wall time = 799.913784 +The maximum resident set size (KB) = 605796 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 496.243852 -The maximum resident set size (KB) = 664460 +The total amount of wall time = 494.260386 +The maximum resident set size (KB) = 663348 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 345.724239 -The maximum resident set size (KB) = 1093280 +The total amount of wall time = 344.899369 +The maximum resident set size (KB) = 1096568 Test 141 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4608,131 +4608,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 345.772834 -The maximum resident set size (KB) = 1072996 +The total amount of wall time = 345.190062 +The maximum resident set size (KB) = 1074276 Test 142 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 947.510105 -The maximum resident set size (KB) = 824996 +The total amount of wall time = 946.876696 +The maximum resident set size (KB) = 885928 Test 143 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.074062 -The maximum resident set size (KB) = 740136 +The total amount of wall time = 143.194938 +The maximum resident set size (KB) = 728292 Test 144 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 89.088790 -The maximum resident set size (KB) = 728348 +The total amount of wall time = 89.842906 +The maximum resident set size (KB) = 728068 Test 145 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.449534 -The maximum resident set size (KB) = 621328 +The total amount of wall time = 134.341755 +The maximum resident set size (KB) = 619876 Test 146 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.138365 -The maximum resident set size (KB) = 619448 +The total amount of wall time = 137.122202 +The maximum resident set size (KB) = 620108 Test 147 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.689264 -The maximum resident set size (KB) = 618736 +The total amount of wall time = 137.275208 +The maximum resident set size (KB) = 620312 Test 148 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.635287 -The maximum resident set size (KB) = 741236 +The total amount of wall time = 143.288583 +The maximum resident set size (KB) = 740512 Test 149 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.216786 -The maximum resident set size (KB) = 740700 +The total amount of wall time = 143.686382 +The maximum resident set size (KB) = 738592 Test 150 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.701772 -The maximum resident set size (KB) = 623220 +The total amount of wall time = 134.392125 +The maximum resident set size (KB) = 618908 Test 151 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4741,14 +4741,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 431.145037 -The maximum resident set size (KB) = 584268 +The total amount of wall time = 428.311613 +The maximum resident set size (KB) = 574504 Test 152 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4757,64 +4757,64 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 425.243028 -The maximum resident set size (KB) = 559876 +The total amount of wall time = 429.153889 +The maximum resident set size (KB) = 560564 Test 153 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.479748 -The maximum resident set size (KB) = 739092 +The total amount of wall time = 143.484985 +The maximum resident set size (KB) = 742072 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 257.988191 -The maximum resident set size (KB) = 1985156 +The total amount of wall time = 257.468792 +The maximum resident set size (KB) = 1982240 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 258.474787 -The maximum resident set size (KB) = 1983920 +The total amount of wall time = 258.477296 +The maximum resident set size (KB) = 1982952 Test 156 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_cfsr_faster_intel Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.879098 -The maximum resident set size (KB) = 739160 +The total amount of wall time = 143.920955 +The maximum resident set size (KB) = 741984 Test 157 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_lnd_gswp3_intel Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4823,14 +4823,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.040653 -The maximum resident set size (KB) = 216532 +The total amount of wall time = 22.735334 +The maximum resident set size (KB) = 229824 Test 158 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_lnd_gswp3_rst_intel Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4839,14 +4839,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.676727 -The maximum resident set size (KB) = 225488 +The total amount of wall time = 26.222056 +The maximum resident set size (KB) = 227376 Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_atmlnd_sbs_intel Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4885,110 +4885,110 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 227.977287 -The maximum resident set size (KB) = 1547664 + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 230.369867 +The maximum resident set size (KB) = 1552744 Test 160 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmwav_control_noaero_p8_intel Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 103.828616 -The maximum resident set size (KB) = 1530140 +The total amount of wall time = 104.309053 +The maximum resident set size (KB) = 1528772 Test 161 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_atmwav_intel Checking test 162 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4999,47 +4999,47 @@ Checking test 162 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.378077 -The maximum resident set size (KB) = 543696 +The total amount of wall time = 89.762355 +The maximum resident set size (KB) = 545880 Test 162 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_intel Checking test 163 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5051,46 +5051,46 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 241.358245 -The maximum resident set size (KB) = 2830128 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 245.068795 +The maximum resident set size (KB) = 2831924 Test 163 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_rad_intel Checking test 164 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5102,46 +5102,46 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 282.543325 -The maximum resident set size (KB) = 2891912 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 282.284228 +The maximum resident set size (KB) = 2892252 Test 164 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_rad_micro_intel Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5153,46 +5153,46 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 286.862974 -The maximum resident set size (KB) = 2903948 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 288.783494 +The maximum resident set size (KB) = 2901812 Test 165 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_atmaq_intel Checking test 166 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5201,40 +5201,40 @@ Checking test 166 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 661.689766 -The maximum resident set size (KB) = 5326376 +The total amount of wall time = 664.282286 +The maximum resident set size (KB) = 5328276 Test 166 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178362/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_atmaq_debug_intel Checking test 167 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1299.077904 -The maximum resident set size (KB) = 4833884 +The total amount of wall time = 1293.324850 +The maximum resident set size (KB) = 4831820 Test 167 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 20 13:54:40 UTC 2023 -Elapsed time: 01h:37m:20s. Have a nice day! +Thu Sep 21 15:51:06 UTC 2023 +Elapsed time: 01h:33m:56s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index b68e107b4b..4e0e1e6c84 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,11 +1,11 @@ -Wed 20 Sep 2023 08:30:16 AM EDT +Thu 21 Sep 2023 09:53:42 AM EDT Start Regression test -Testing UFSWM Hash: 91a91efaa361855c350f5fd9895c47ec23edf84a +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,43 +15,43 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 663 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 722 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 661 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 784 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 690 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 695 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 234 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 227 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 769 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 701 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 778 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 753 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 753 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 874 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 246 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1215 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 815 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 771 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 672 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 792 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 648 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 710 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 672 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 242 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 689 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 206 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 845 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 921 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 834 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 810 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 310 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 974 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 302 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -79,51 +79,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.251787 - 0: The maximum resident set size (KB) = 1568312 + 0: The total amount of wall time = 311.195043 + 0: The maximum resident set size (KB) = 1568456 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -150,51 +150,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.066508 - 0: The maximum resident set size (KB) = 1467004 + 0: The total amount of wall time = 223.730337 + 0: The maximum resident set size (KB) = 1467036 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -222,51 +222,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.893740 - 0: The maximum resident set size (KB) = 1602536 + 0: The total amount of wall time = 354.386095 + 0: The maximum resident set size (KB) = 1603100 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -282,51 +282,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.452905 - 0: The maximum resident set size (KB) = 1473068 + 0: The total amount of wall time = 206.242832 + 0: The maximum resident set size (KB) = 1472944 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -354,7 +354,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -385,20 +385,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.272733 - 0: The maximum resident set size (KB) = 1613592 + 0: The total amount of wall time = 368.297240 + 0: The maximum resident set size (KB) = 1612916 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -414,7 +414,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -445,20 +445,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.702199 - 0: The maximum resident set size (KB) = 1308208 + 0: The total amount of wall time = 238.893354 + 0: The maximum resident set size (KB) = 1307776 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -474,51 +474,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.643889 - 0: The maximum resident set size (KB) = 1826600 + 0: The total amount of wall time = 346.417429 + 0: The maximum resident set size (KB) = 1836636 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -534,51 +534,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.958782 - 0: The maximum resident set size (KB) = 1599192 + 0: The total amount of wall time = 360.042380 + 0: The maximum resident set size (KB) = 1599224 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -594,51 +594,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.200042 - 0: The maximum resident set size (KB) = 1558788 + 0: The total amount of wall time = 293.067018 + 0: The maximum resident set size (KB) = 1559048 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -646,54 +646,54 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 620.438531 - 0: The maximum resident set size (KB) = 3070376 + 0: The total amount of wall time = 620.852728 + 0: The maximum resident set size (KB) = 3068216 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -701,54 +701,54 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.797723 - 0: The maximum resident set size (KB) = 3008932 + 0: The total amount of wall time = 375.303699 + 0: The maximum resident set size (KB) = 3019064 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -775,51 +775,51 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.617220 - 0: The maximum resident set size (KB) = 1485108 + 0: The total amount of wall time = 265.090464 + 0: The maximum resident set size (KB) = 1484928 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -846,49 +846,49 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.240419 - 0: The maximum resident set size (KB) = 1521400 + 0: The total amount of wall time = 273.427044 + 0: The maximum resident set size (KB) = 1521332 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -904,51 +904,51 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.927498 - 0: The maximum resident set size (KB) = 1603924 + 0: The total amount of wall time = 532.344997 + 0: The maximum resident set size (KB) = 1604136 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -963,51 +963,51 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.213566 - 0: The maximum resident set size (KB) = 1505276 + 0: The total amount of wall time = 361.928110 + 0: The maximum resident set size (KB) = 1504804 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1034,49 +1034,49 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.600200 - 0: The maximum resident set size (KB) = 1522156 + 0: The total amount of wall time = 273.680030 + 0: The maximum resident set size (KB) = 1522152 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1091,49 +1091,49 @@ Checking test 017 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 596.171703 - 0: The maximum resident set size (KB) = 2591984 + 0: The total amount of wall time = 599.779370 + 0: The maximum resident set size (KB) = 2591272 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1161,51 +1161,51 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.441071 + 0: The total amount of wall time = 349.579200 0: The maximum resident set size (KB) = 1602812 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.195287 - 0: The maximum resident set size (KB) = 496040 + 0: The total amount of wall time = 205.128427 + 0: The maximum resident set size (KB) = 496072 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.042201 - 0: The maximum resident set size (KB) = 448128 + 0: The total amount of wall time = 135.145624 + 0: The maximum resident set size (KB) = 447944 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.443720 - 0: The maximum resident set size (KB) = 451972 + 0: The total amount of wall time = 151.539832 + 0: The maximum resident set size (KB) = 451864 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.062644 - 0: The maximum resident set size (KB) = 447980 + 0: The total amount of wall time = 138.160405 + 0: The maximum resident set size (KB) = 448084 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.927039 - 0: The maximum resident set size (KB) = 448220 + 0: The total amount of wall time = 149.189969 + 0: The maximum resident set size (KB) = 448276 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 419.210565 -0: The maximum resident set size (KB) = 651564 +0: The total amount of wall time = 418.711128 +0: The maximum resident set size (KB) = 651672 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 566.776044 - 0: The maximum resident set size (KB) = 554076 + 0: The total amount of wall time = 567.673476 + 0: The maximum resident set size (KB) = 554288 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1080.307649 - 0: The maximum resident set size (KB) = 946672 + 0: The total amount of wall time = 1079.969587 + 0: The maximum resident set size (KB) = 946232 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 895.201649 - 0: The maximum resident set size (KB) = 1073704 + 0: The total amount of wall time = 895.157066 + 0: The maximum resident set size (KB) = 1073720 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.073445 - 0: The maximum resident set size (KB) = 454608 + 0: The total amount of wall time = 90.992880 + 0: The maximum resident set size (KB) = 454764 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.965802 - 0: The maximum resident set size (KB) = 269096 + 0: The total amount of wall time = 49.253544 + 0: The maximum resident set size (KB) = 269332 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.795807 - 0: The maximum resident set size (KB) = 452684 + 0: The total amount of wall time = 84.210282 + 0: The maximum resident set size (KB) = 452868 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.756240 - 0: The maximum resident set size (KB) = 448236 + 0: The total amount of wall time = 139.999011 + 0: The maximum resident set size (KB) = 448172 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.067396 - 0: The maximum resident set size (KB) = 448244 + 0: The total amount of wall time = 141.936524 + 0: The maximum resident set size (KB) = 448088 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.121183 - 0: The maximum resident set size (KB) = 1419880 + 0: The total amount of wall time = 214.112867 + 0: The maximum resident set size (KB) = 1419844 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.287443 - 0: The maximum resident set size (KB) = 623520 + 0: The total amount of wall time = 92.392683 + 0: The maximum resident set size (KB) = 623644 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.639650 - 0: The maximum resident set size (KB) = 1428808 + 0: The total amount of wall time = 169.733961 + 0: The maximum resident set size (KB) = 1428912 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.923913 - 0: The maximum resident set size (KB) = 596676 + 0: The total amount of wall time = 95.498156 + 0: The maximum resident set size (KB) = 596920 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.110961 - 0: The maximum resident set size (KB) = 1413708 + 0: The total amount of wall time = 176.992628 + 0: The maximum resident set size (KB) = 1413756 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.315438 - 0: The maximum resident set size (KB) = 1500528 + 0: The total amount of wall time = 159.585296 + 0: The maximum resident set size (KB) = 1500776 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.236362 - 0: The maximum resident set size (KB) = 1420084 + 0: The total amount of wall time = 328.849717 + 0: The maximum resident set size (KB) = 1420092 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.622567 - 0: The maximum resident set size (KB) = 1473280 + 0: The total amount of wall time = 232.921322 + 0: The maximum resident set size (KB) = 1473388 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.147404 - 0: The maximum resident set size (KB) = 1424840 + 0: The total amount of wall time = 173.553305 + 0: The maximum resident set size (KB) = 1424736 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 194.737666 - 0: The maximum resident set size (KB) = 1425436 + 0: The total amount of wall time = 197.010966 + 0: The maximum resident set size (KB) = 1425368 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.651326 - 0: The maximum resident set size (KB) = 805816 + 0: The total amount of wall time = 314.986444 + 0: The maximum resident set size (KB) = 805188 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 159.600502 - 0: The maximum resident set size (KB) = 802628 + 0: The total amount of wall time = 160.152513 + 0: The maximum resident set size (KB) = 802852 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.383885 - 0: The maximum resident set size (KB) = 805216 + 0: The total amount of wall time = 323.453606 + 0: The maximum resident set size (KB) = 805800 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 159.954407 - 0: The maximum resident set size (KB) = 802344 + 0: The total amount of wall time = 160.013649 + 0: The maximum resident set size (KB) = 802872 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.984084 - 0: The maximum resident set size (KB) = 803744 + 0: The total amount of wall time = 341.154338 + 0: The maximum resident set size (KB) = 803372 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.423697 + 0: The total amount of wall time = 187.511628 0: The maximum resident set size (KB) = 809908 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 312.835223 - 0: The maximum resident set size (KB) = 1077464 + 0: The total amount of wall time = 319.356204 + 0: The maximum resident set size (KB) = 1077644 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 316.845752 - 0: The maximum resident set size (KB) = 800936 + 0: The total amount of wall time = 320.283139 + 0: The maximum resident set size (KB) = 801080 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.202563 - 0: The maximum resident set size (KB) = 808768 + 0: The total amount of wall time = 319.216817 + 0: The maximum resident set size (KB) = 808864 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 401.918626 - 0: The maximum resident set size (KB) = 549768 + 0: The total amount of wall time = 404.502707 + 0: The maximum resident set size (KB) = 549852 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.620935 - 0: The maximum resident set size (KB) = 825368 + 0: The total amount of wall time = 449.916086 + 0: The maximum resident set size (KB) = 829480 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.129184 - 0: The maximum resident set size (KB) = 920828 + 0: The total amount of wall time = 249.593584 + 0: The maximum resident set size (KB) = 920812 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 463.647568 - 0: The maximum resident set size (KB) = 832472 + 0: The total amount of wall time = 463.559059 + 0: The maximum resident set size (KB) = 824252 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 426.223051 - 0: The maximum resident set size (KB) = 911224 + 0: The total amount of wall time = 426.370201 + 0: The maximum resident set size (KB) = 908860 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.625507 - 0: The maximum resident set size (KB) = 729432 + 0: The total amount of wall time = 228.356042 + 0: The maximum resident set size (KB) = 729488 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.216606 - 0: The maximum resident set size (KB) = 833392 + 0: The total amount of wall time = 448.884988 + 0: The maximum resident set size (KB) = 833476 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 464.812089 - 0: The maximum resident set size (KB) = 832368 + 0: The total amount of wall time = 464.586445 + 0: The maximum resident set size (KB) = 824184 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 333.848098 - 0: The maximum resident set size (KB) = 738424 + 0: The total amount of wall time = 333.706608 + 0: The maximum resident set size (KB) = 738284 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.696299 - 0: The maximum resident set size (KB) = 830932 + 0: The total amount of wall time = 430.555119 + 0: The maximum resident set size (KB) = 830820 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.836751 - 0: The maximum resident set size (KB) = 838380 + 0: The total amount of wall time = 430.257173 + 0: The maximum resident set size (KB) = 838428 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 445.009792 - 0: The maximum resident set size (KB) = 822332 + 0: The total amount of wall time = 445.494943 + 0: The maximum resident set size (KB) = 830516 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 396.239592 - 0: The maximum resident set size (KB) = 903952 + 0: The total amount of wall time = 395.740030 + 0: The maximum resident set size (KB) = 904068 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.886599 - 0: The maximum resident set size (KB) = 685956 + 0: The total amount of wall time = 322.096268 + 0: The maximum resident set size (KB) = 686016 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.358523 - 0: The maximum resident set size (KB) = 600900 + 0: The total amount of wall time = 324.786138 + 0: The maximum resident set size (KB) = 600960 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 439.323011 - 0: The maximum resident set size (KB) = 830500 + 0: The total amount of wall time = 440.909520 + 0: The maximum resident set size (KB) = 822376 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 546.130541 - 0: The maximum resident set size (KB) = 504116 + 0: The total amount of wall time = 548.475038 + 0: The maximum resident set size (KB) = 504040 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.959036 - 0: The maximum resident set size (KB) = 499652 + 0: The total amount of wall time = 528.935405 + 0: The maximum resident set size (KB) = 499612 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_gf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_gf_intel Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 070 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 448.424384 - 0: The maximum resident set size (KB) = 833072 + 0: The total amount of wall time = 450.766870 + 0: The maximum resident set size (KB) = 833044 Test 070 hrrr_gf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_c3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_c3_intel Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3017,14 +3017,14 @@ Checking test 071 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.991276 - 0: The maximum resident set size (KB) = 833028 + 0: The total amount of wall time = 451.959477 + 0: The maximum resident set size (KB) = 832932 Test 071 hrrr_c3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.539674 - 0: The maximum resident set size (KB) = 514260 + 0: The total amount of wall time = 361.977754 + 0: The maximum resident set size (KB) = 514280 Test 072 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,26 +3053,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.546847 - 0: The maximum resident set size (KB) = 482744 + 0: The total amount of wall time = 194.078217 + 0: The maximum resident set size (KB) = 482644 Test 073 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.638347 - 0: The maximum resident set size (KB) = 258096 + 0: The total amount of wall time = 120.890988 + 0: The maximum resident set size (KB) = 258048 Test 074 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3119,14 +3119,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.481750 - 0: The maximum resident set size (KB) = 1419672 + 0: The total amount of wall time = 169.292233 + 0: The maximum resident set size (KB) = 1419716 Test 075 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3137,14 +3137,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.775721 - 0: The maximum resident set size (KB) = 805536 + 0: The total amount of wall time = 297.561648 + 0: The maximum resident set size (KB) = 805544 Test 076 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3171,348 +3171,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.016882 - 0: The maximum resident set size (KB) = 613176 + 0: The total amount of wall time = 154.480633 + 0: The maximum resident set size (KB) = 613096 Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.678523 - 0: The maximum resident set size (KB) = 612520 + 0: The total amount of wall time = 154.827578 + 0: The maximum resident set size (KB) = 612568 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.074580 - 0: The maximum resident set size (KB) = 616968 + 0: The total amount of wall time = 170.327817 + 0: The maximum resident set size (KB) = 616904 Test 079 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.529698 - 0: The maximum resident set size (KB) = 615504 + 0: The total amount of wall time = 152.676954 + 0: The maximum resident set size (KB) = 615652 Test 080 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.504851 - 0: The maximum resident set size (KB) = 653004 + 0: The total amount of wall time = 243.258054 + 0: The maximum resident set size (KB) = 653028 Test 081 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.749519 - 0: The maximum resident set size (KB) = 653216 + 0: The total amount of wall time = 238.313216 + 0: The maximum resident set size (KB) = 653316 Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.308576 - 0: The maximum resident set size (KB) = 625540 + 0: The total amount of wall time = 154.291402 + 0: The maximum resident set size (KB) = 625448 Test 083 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.343354 - 0: The maximum resident set size (KB) = 667968 + 0: The total amount of wall time = 157.011005 + 0: The maximum resident set size (KB) = 668088 Test 084 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.517923 - 0: The maximum resident set size (KB) = 1436856 + 0: The total amount of wall time = 171.180684 + 0: The maximum resident set size (KB) = 1436764 Test 085 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1027.975277 - 0: The maximum resident set size (KB) = 829908 + 0: The total amount of wall time = 1027.553887 + 0: The maximum resident set size (KB) = 829872 Test 086 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.400323 - 0: The maximum resident set size (KB) = 997468 + 0: The total amount of wall time = 281.305957 + 0: The maximum resident set size (KB) = 997396 Test 087 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.171292 - 0: The maximum resident set size (KB) = 994816 + 0: The total amount of wall time = 274.375927 + 0: The maximum resident set size (KB) = 994760 Test 088 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.950133 - 0: The maximum resident set size (KB) = 997496 + 0: The total amount of wall time = 280.748493 + 0: The maximum resident set size (KB) = 997452 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.901081 + 0: The total amount of wall time = 294.212944 0: The maximum resident set size (KB) = 1079684 Test 090 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.769592 - 0: The maximum resident set size (KB) = 997056 + 0: The total amount of wall time = 286.976837 + 0: The maximum resident set size (KB) = 997104 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.236815 + 0: The total amount of wall time = 286.774187 0: The maximum resident set size (KB) = 997588 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.072704 - 0: The maximum resident set size (KB) = 990016 + 0: The total amount of wall time = 285.660800 + 0: The maximum resident set size (KB) = 998180 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.591946 - 0: The maximum resident set size (KB) = 997476 + 0: The total amount of wall time = 281.165316 + 0: The maximum resident set size (KB) = 989268 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.867481 - 0: The maximum resident set size (KB) = 997168 + 0: The total amount of wall time = 274.881229 + 0: The maximum resident set size (KB) = 997136 Test 095 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.516354 - 0: The maximum resident set size (KB) = 993204 + 0: The total amount of wall time = 280.707700 + 0: The maximum resident set size (KB) = 997260 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.587669 - 0: The maximum resident set size (KB) = 992724 + 0: The total amount of wall time = 464.565146 + 0: The maximum resident set size (KB) = 996804 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.007595 - 0: The maximum resident set size (KB) = 994604 + 0: The total amount of wall time = 276.356988 + 0: The maximum resident set size (KB) = 986564 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.522376 - 0: The maximum resident set size (KB) = 1000000 + 0: The total amount of wall time = 345.697387 + 0: The maximum resident set size (KB) = 991792 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.697940 - 0: The maximum resident set size (KB) = 997340 + 0: The total amount of wall time = 282.820655 + 0: The maximum resident set size (KB) = 997432 Test 100 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 285.485490 - 0: The maximum resident set size (KB) = 288068 + 0: The total amount of wall time = 290.178975 + 0: The maximum resident set size (KB) = 288024 Test 101 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 238.722050 - 0: The maximum resident set size (KB) = 819588 + 0: The total amount of wall time = 234.348565 + 0: The maximum resident set size (KB) = 818776 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3577,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 368.851724 - 0: The maximum resident set size (KB) = 718528 + 0: The total amount of wall time = 371.318283 + 0: The maximum resident set size (KB) = 718596 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3631,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.866489 - 0: The maximum resident set size (KB) = 715116 + 0: The total amount of wall time = 189.219278 + 0: The maximum resident set size (KB) = 706956 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3685,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 189.539171 - 0: The maximum resident set size (KB) = 720440 + 0: The total amount of wall time = 190.158051 + 0: The maximum resident set size (KB) = 720456 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3739,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 344.965563 - 0: The maximum resident set size (KB) = 769736 + 0: The total amount of wall time = 344.951581 + 0: The maximum resident set size (KB) = 769688 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.474743 - 0: The maximum resident set size (KB) = 767060 + 0: The total amount of wall time = 176.026954 + 0: The maximum resident set size (KB) = 758856 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3847,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 194.043165 - 0: The maximum resident set size (KB) = 707496 + 0: The total amount of wall time = 196.694557 + 0: The maximum resident set size (KB) = 715720 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,42 +3893,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 273.507805 - 0: The maximum resident set size (KB) = 632184 + 0: The total amount of wall time = 274.190021 + 0: The maximum resident set size (KB) = 632092 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.429046 - 0: The maximum resident set size (KB) = 594660 + 0: The total amount of wall time = 98.908398 + 0: The maximum resident set size (KB) = 594240 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.869811 - 0: The maximum resident set size (KB) = 560400 + 0: The total amount of wall time = 100.797702 + 0: The maximum resident set size (KB) = 560024 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,40 +3944,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 118.637323 - 0: The maximum resident set size (KB) = 941040 + 0: The total amount of wall time = 122.171596 + 0: The maximum resident set size (KB) = 941080 Test 112 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.249592 - 0: The maximum resident set size (KB) = 947916 + 0: The total amount of wall time = 45.758496 + 0: The maximum resident set size (KB) = 948000 Test 113 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.698305 - 0: The maximum resident set size (KB) = 887624 + 0: The total amount of wall time = 65.405757 + 0: The maximum resident set size (KB) = 887588 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,123 +4024,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 248.022680 - 0: The maximum resident set size (KB) = 728868 + 0: The total amount of wall time = 249.294986 + 0: The maximum resident set size (KB) = 728948 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.339610 - 0: The maximum resident set size (KB) = 873644 + 0: The total amount of wall time = 281.776186 + 0: The maximum resident set size (KB) = 881720 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.604096 - 0: The maximum resident set size (KB) = 880820 + 0: The total amount of wall time = 271.225234 + 0: The maximum resident set size (KB) = 880660 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 865.792824 - 0: The maximum resident set size (KB) = 974516 + 0: The total amount of wall time = 872.095891 + 0: The maximum resident set size (KB) = 974484 Test 118 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.365686 - 0: The maximum resident set size (KB) = 981300 + 0: The total amount of wall time = 493.566612 + 0: The maximum resident set size (KB) = 981088 Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/conus13km_radar_tten_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 866.403194 - 0: The maximum resident set size (KB) = 1042388 + 0: The total amount of wall time = 870.611341 + 0: The maximum resident set size (KB) = 1042384 Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.845987 - 0: The maximum resident set size (KB) = 884736 + 0: The total amount of wall time = 305.745916 + 0: The maximum resident set size (KB) = 884876 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 230.297232 - 0: The maximum resident set size (KB) = 879076 + 0: The total amount of wall time = 230.772347 + 0: The maximum resident set size (KB) = 877836 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 271.825681 - 0: The maximum resident set size (KB) = 1205576 + 0: The total amount of wall time = 271.703936 + 0: The maximum resident set size (KB) = 1203348 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 412.386528 - 0: The maximum resident set size (KB) = 907636 + 0: The total amount of wall time = 417.062710 + 0: The maximum resident set size (KB) = 909048 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,14 +4165,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 904.463528 - 0: The maximum resident set size (KB) = 930232 + 0: The total amount of wall time = 901.859384 + 0: The maximum resident set size (KB) = 930348 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,14 +4183,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1010.743875 - 0: The maximum resident set size (KB) = 961436 + 0: The total amount of wall time = 1009.494856 + 0: The maximum resident set size (KB) = 960212 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 332.023994 - 0: The maximum resident set size (KB) = 428028 + 0: The total amount of wall time = 332.481611 + 0: The maximum resident set size (KB) = 428128 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4241,14 +4241,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 384.419067 - 0: The maximum resident set size (KB) = 298300 + 0: The total amount of wall time = 392.121853 + 0: The maximum resident set size (KB) = 298224 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4257,14 +4257,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 379.700184 - 0: The maximum resident set size (KB) = 438476 + 0: The total amount of wall time = 379.646670 + 0: The maximum resident set size (KB) = 438628 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.040844 - 0: The maximum resident set size (KB) = 233704 + 0: The total amount of wall time = 151.517838 + 0: The maximum resident set size (KB) = 233820 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.739433 - 0: The maximum resident set size (KB) = 216140 + 0: The total amount of wall time = 253.675932 + 0: The maximum resident set size (KB) = 215876 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 426.780938 - 0: The maximum resident set size (KB) = 259460 + 0: The total amount of wall time = 428.786630 + 0: The maximum resident set size (KB) = 257324 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4543,14 +4543,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 543.203537 - 0: The maximum resident set size (KB) = 257400 + 0: The total amount of wall time = 686.163271 + 0: The maximum resident set size (KB) = 256052 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4559,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 212.577127 - 0: The maximum resident set size (KB) = 447116 + 0: The total amount of wall time = 212.978047 + 0: The maximum resident set size (KB) = 447364 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4588,14 +4588,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.775675 - 0: The maximum resident set size (KB) = 445424 + 0: The total amount of wall time = 197.655717 + 0: The maximum resident set size (KB) = 445228 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4617,14 +4617,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 242.195263 - 0: The maximum resident set size (KB) = 331684 + 0: The total amount of wall time = 274.990488 + 0: The maximum resident set size (KB) = 329016 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4633,42 +4633,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 245.746452 - 0: The maximum resident set size (KB) = 475784 + 0: The total amount of wall time = 245.275655 + 0: The maximum resident set size (KB) = 474336 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.006885 - 0: The maximum resident set size (KB) = 254120 + 0: The total amount of wall time = 58.668033 + 0: The maximum resident set size (KB) = 254728 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.264424 - 0: The maximum resident set size (KB) = 475396 + 0: The total amount of wall time = 754.885553 + 0: The maximum resident set size (KB) = 493700 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 632.838963 - 0: The maximum resident set size (KB) = 527324 + 0: The total amount of wall time = 634.262096 + 0: The maximum resident set size (KB) = 524780 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 350.192796 - 0: The maximum resident set size (KB) = 901448 + 0: The total amount of wall time = 356.450089 + 0: The maximum resident set size (KB) = 901016 Test 141 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,131 +4709,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 352.017322 - 0: The maximum resident set size (KB) = 884108 + 0: The total amount of wall time = 357.833800 + 0: The maximum resident set size (KB) = 887844 Test 142 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1190.212973 - 0: The maximum resident set size (KB) = 848392 + 0: The total amount of wall time = 1188.336531 + 0: The maximum resident set size (KB) = 848440 Test 143 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.377160 - 0: The maximum resident set size (KB) = 719724 + 0: The total amount of wall time = 165.237797 + 0: The maximum resident set size (KB) = 719644 Test 144 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 98.652108 - 0: The maximum resident set size (KB) = 718936 + 0: The total amount of wall time = 96.796801 + 0: The maximum resident set size (KB) = 718944 Test 145 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.210595 - 0: The maximum resident set size (KB) = 613552 + 0: The total amount of wall time = 157.948261 + 0: The maximum resident set size (KB) = 610964 Test 146 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.648032 - 0: The maximum resident set size (KB) = 617352 + 0: The total amount of wall time = 156.704632 + 0: The maximum resident set size (KB) = 617388 Test 147 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.292897 - 0: The maximum resident set size (KB) = 610784 + 0: The total amount of wall time = 158.338941 + 0: The maximum resident set size (KB) = 611228 Test 148 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.623221 - 0: The maximum resident set size (KB) = 719836 + 0: The total amount of wall time = 162.497108 + 0: The maximum resident set size (KB) = 731432 Test 149 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.196268 - 0: The maximum resident set size (KB) = 731404 + 0: The total amount of wall time = 162.139294 + 0: The maximum resident set size (KB) = 731436 Test 150 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.197320 - 0: The maximum resident set size (KB) = 613244 + 0: The total amount of wall time = 153.946590 + 0: The maximum resident set size (KB) = 610772 Test 151 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4842,14 +4842,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 379.563958 - 0: The maximum resident set size (KB) = 512316 + 0: The total amount of wall time = 381.028569 + 0: The maximum resident set size (KB) = 512260 Test 152 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4858,77 +4858,77 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 382.277599 - 0: The maximum resident set size (KB) = 495304 + 0: The total amount of wall time = 378.083923 + 0: The maximum resident set size (KB) = 497512 Test 153 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.755943 + 0: The total amount of wall time = 164.053138 0: The maximum resident set size (KB) = 731516 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.746026 - 0: The maximum resident set size (KB) = 1964280 + 0: The total amount of wall time = 265.590658 + 0: The maximum resident set size (KB) = 1967012 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.006858 - 0: The maximum resident set size (KB) = 1965176 + 0: The total amount of wall time = 263.343511 + 0: The maximum resident set size (KB) = 1966212 Test 156 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_debug_cfsr_intel Checking test 157 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.190633 - 0: The maximum resident set size (KB) = 714664 + 0: The total amount of wall time = 369.474463 + 0: The maximum resident set size (KB) = 714860 Test 157 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.589978 - 0: The maximum resident set size (KB) = 731324 + 0: The total amount of wall time = 161.893362 + 0: The maximum resident set size (KB) = 719772 Test 158 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4937,14 +4937,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.625620 - 0: The maximum resident set size (KB) = 118200 + 0: The total amount of wall time = 6.987653 + 0: The maximum resident set size (KB) = 118276 Test 159 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4953,14 +4953,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.174647 - 0: The maximum resident set size (KB) = 116076 + 0: The total amount of wall time = 11.166245 + 0: The maximum resident set size (KB) = 116164 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5045,14 +5045,14 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 215.049795 - 0: The maximum resident set size (KB) = 1454928 + 0: The total amount of wall time = 213.686066 + 0: The maximum resident set size (KB) = 1454868 Test 161 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5095,14 +5095,14 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.314104 - 0: The maximum resident set size (KB) = 1437340 + 0: The total amount of wall time = 92.778668 + 0: The maximum resident set size (KB) = 1437780 Test 162 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5146,14 +5146,14 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.606425 - 0: The maximum resident set size (KB) = 461080 + 0: The total amount of wall time = 88.853137 + 0: The maximum resident set size (KB) = 461020 Test 163 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5197,14 +5197,14 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 235.271237 - 0: The maximum resident set size (KB) = 1482304 + 0: The total amount of wall time = 237.112357 + 0: The maximum resident set size (KB) = 1482244 Test 164 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5248,14 +5248,14 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.776983 - 0: The maximum resident set size (KB) = 1524572 + 0: The total amount of wall time = 288.792926 + 0: The maximum resident set size (KB) = 1524684 Test 165 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5299,14 +5299,14 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 298.514752 - 0: The maximum resident set size (KB) = 1532168 + 0: The total amount of wall time = 291.327529 + 0: The maximum resident set size (KB) = 1532280 Test 166 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_46301/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5322,15 +5322,15 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 636.423430 - 0: The maximum resident set size (KB) = 5047560 + 0: The total amount of wall time = 643.312589 + 0: The maximum resident set size (KB) = 5048712 Test 167 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_25675/regional_atmaq_faster_intel -Checking test 001 regional_atmaq_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_atmaq_faster_intel +Checking test 168 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5345,12 +5345,12 @@ Checking test 001 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 613.253550 - 0: The maximum resident set size (KB) = 5040860 + 0: The total amount of wall time = 619.296829 + 0: The maximum resident set size (KB) = 5048056 -Test 168 regional_atmaq_faster_intel PASS +Test 168 regional_atmaq_faster_intel PASS Tries: 2 REGRESSION TEST WAS SUCCESSFUL -Wed 20 Sep 2023 10:55:11 AM EDT -Elapsed time: 00h:27m:54s. Have a nice day! +Thu 21 Sep 2023 11:06:33 AM EDT +Elapsed time: 01h:12m:59s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index af3f98f0d8..65d02e16d5 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,11 +1,11 @@ -Wed Sep 20 01:02:43 UTC 2023 +Thu Sep 21 05:00:56 UTC 2023 Start Regression test -Testing UFSWM Hash: 15c7fde52750a00920dc4a4b429bab4a1890ca12 +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,60 +15,60 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 241 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 593 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 233 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 164 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 597 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 262 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 544 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 523 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 536 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 554 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 559 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 108 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_dyn64_phy32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 263 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 544 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 521 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 539 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 556 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 574 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 195 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 600 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 649 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 579 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 194 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 583 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 645 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile s2s_aoflux_intel elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 218 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 630 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 919 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 132 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 234 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 254 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_mixedmode_intel +Compile s2s_gnu elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 220 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 628 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 117 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 221 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 240 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 905 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 654 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 129 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 237 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 954 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 652 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 92 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -96,51 +96,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.102344 - 0: The maximum resident set size (KB) = 3144872 + 0: The total amount of wall time = 309.053807 + 0: The maximum resident set size (KB) = 3141388 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -167,51 +167,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 215.462670 - 0: The maximum resident set size (KB) = 1697572 + 0: The total amount of wall time = 218.705561 + 0: The maximum resident set size (KB) = 1699020 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -239,51 +239,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.996064 - 0: The maximum resident set size (KB) = 3195220 + 0: The total amount of wall time = 343.110845 + 0: The maximum resident set size (KB) = 3197664 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -299,51 +299,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.213966 - 0: The maximum resident set size (KB) = 3246684 + 0: The total amount of wall time = 191.182247 + 0: The maximum resident set size (KB) = 3256576 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,7 +371,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -402,20 +402,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.884458 - 0: The maximum resident set size (KB) = 3156752 + 0: The total amount of wall time = 342.280273 + 0: The maximum resident set size (KB) = 3194024 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -431,7 +431,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -462,20 +462,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.124419 - 0: The maximum resident set size (KB) = 3085804 + 0: The total amount of wall time = 197.305782 + 0: The maximum resident set size (KB) = 3078348 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -491,51 +491,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.663515 - 0: The maximum resident set size (KB) = 3542328 + 0: The total amount of wall time = 325.862736 + 0: The maximum resident set size (KB) = 3525788 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -551,51 +551,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.829526 - 0: The maximum resident set size (KB) = 3190276 + 0: The total amount of wall time = 343.507847 + 0: The maximum resident set size (KB) = 3178812 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -611,51 +611,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.351875 - 0: The maximum resident set size (KB) = 3044252 + 0: The total amount of wall time = 277.370687 + 0: The maximum resident set size (KB) = 3048876 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -683,51 +683,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.656243 - 0: The maximum resident set size (KB) = 3198932 + 0: The total amount of wall time = 340.831181 + 0: The maximum resident set size (KB) = 3194012 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -743,51 +743,51 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 576.217580 - 0: The maximum resident set size (KB) = 3430700 + 0: The total amount of wall time = 574.123588 + 0: The maximum resident set size (KB) = 3421444 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -803,51 +803,51 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 370.363578 - 0: The maximum resident set size (KB) = 3612276 + 0: The total amount of wall time = 370.966910 + 0: The maximum resident set size (KB) = 3606976 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -855,54 +855,54 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 653.470360 - 0: The maximum resident set size (KB) = 4114132 + 0: The total amount of wall time = 627.508788 + 0: The maximum resident set size (KB) = 4145136 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -910,54 +910,54 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 543.931614 - 0: The maximum resident set size (KB) = 4355696 + 0: The total amount of wall time = 510.286776 + 0: The maximum resident set size (KB) = 4355712 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -984,51 +984,51 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.013411 - 0: The maximum resident set size (KB) = 1723716 + 0: The total amount of wall time = 260.621506 + 0: The maximum resident set size (KB) = 1714228 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1055,49 +1055,49 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.267051 - 0: The maximum resident set size (KB) = 1770672 + 0: The total amount of wall time = 257.554374 + 0: The maximum resident set size (KB) = 1770036 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1113,51 +1113,51 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 511.714788 - 0: The maximum resident set size (KB) = 3240036 + 0: The total amount of wall time = 515.128705 + 0: The maximum resident set size (KB) = 3227740 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1172,51 +1172,51 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.432351 - 0: The maximum resident set size (KB) = 1739800 + 0: The total amount of wall time = 346.531960 + 0: The maximum resident set size (KB) = 1752808 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1243,49 +1243,49 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.119539 - 0: The maximum resident set size (KB) = 1763124 + 0: The total amount of wall time = 255.231832 + 0: The maximum resident set size (KB) = 1770056 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1300,49 +1300,49 @@ Checking test 020 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.392555 - 0: The maximum resident set size (KB) = 2815308 + 0: The total amount of wall time = 570.877928 + 0: The maximum resident set size (KB) = 2823604 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1370,51 +1370,51 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.556499 - 0: The maximum resident set size (KB) = 3198108 + 0: The total amount of wall time = 319.045514 + 0: The maximum resident set size (KB) = 3180216 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1441,51 +1441,51 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1200.114005 - 0: The maximum resident set size (KB) = 1766356 + 0: The total amount of wall time = 1210.599387 + 0: The maximum resident set size (KB) = 1764592 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1500,51 +1500,51 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 585.309475 - 0: The maximum resident set size (KB) = 1135176 + 0: The total amount of wall time = 564.159803 + 0: The maximum resident set size (KB) = 1150776 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1571,51 +1571,51 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1087.629035 - 0: The maximum resident set size (KB) = 1653620 + 0: The total amount of wall time = 1092.981416 + 0: The maximum resident set size (KB) = 1669328 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1630,51 +1630,51 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1386.123174 - 0: The maximum resident set size (KB) = 1702324 + 0: The total amount of wall time = 1347.341350 + 0: The maximum resident set size (KB) = 1710576 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.112238 - 0: The maximum resident set size (KB) = 692096 + 0: The total amount of wall time = 187.502427 + 0: The maximum resident set size (KB) = 690960 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,20 +1719,20 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.838652 - 0: The maximum resident set size (KB) = 634820 + 0: The total amount of wall time = 132.896694 + 0: The maximum resident set size (KB) = 643676 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.972469 - 0: The maximum resident set size (KB) = 645928 + 0: The total amount of wall time = 138.356273 + 0: The maximum resident set size (KB) = 650020 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,16 +1759,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.916780 - 0: The maximum resident set size (KB) = 641624 + 0: The total amount of wall time = 133.567572 + 0: The maximum resident set size (KB) = 646820 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1777,60 +1777,60 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.453820 - 0: The maximum resident set size (KB) = 640260 + 0: The total amount of wall time = 135.114027 + 0: The maximum resident set size (KB) = 642332 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0: The total amount of wall time = 369.103728 -0: The maximum resident set size (KB) = 834752 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 370.744217 +0: The maximum resident set size (KB) = 831188 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.088419 - 0: The maximum resident set size (KB) = 781432 + 0: The total amount of wall time = 529.889499 + 0: The maximum resident set size (KB) = 788896 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.381805 - 0: The maximum resident set size (KB) = 1392776 + 0: The total amount of wall time = 526.842330 + 0: The maximum resident set size (KB) = 1377732 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1877,46 +1877,46 @@ Checking test 034 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 459.707516 - 0: The maximum resident set size (KB) = 1494592 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 456.260758 + 0: The maximum resident set size (KB) = 1497372 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.795153 - 0: The maximum resident set size (KB) = 648752 + 0: The total amount of wall time = 89.999712 + 0: The maximum resident set size (KB) = 648340 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.239631 - 0: The maximum resident set size (KB) = 553448 + 0: The total amount of wall time = 48.670014 + 0: The maximum resident set size (KB) = 531076 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.983839 - 0: The maximum resident set size (KB) = 648828 + 0: The total amount of wall time = 83.101775 + 0: The maximum resident set size (KB) = 641872 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.225048 - 0: The maximum resident set size (KB) = 635260 + 0: The total amount of wall time = 137.229070 + 0: The maximum resident set size (KB) = 645444 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.457062 - 0: The maximum resident set size (KB) = 635144 + 0: The total amount of wall time = 136.032232 + 0: The maximum resident set size (KB) = 638992 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2025,92 +2025,92 @@ Checking test 040 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 167.328995 - 0: The maximum resident set size (KB) = 1611848 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 169.050891 + 0: The maximum resident set size (KB) = 1621300 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 88.835253 - 0: The maximum resident set size (KB) = 929280 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 87.704028 + 0: The maximum resident set size (KB) = 927916 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,7 +2125,7 @@ Checking test 042 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2157,21 +2157,21 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.673793 - 0: The maximum resident set size (KB) = 1617532 + 0: The total amount of wall time = 167.447728 + 0: The maximum resident set size (KB) = 1616024 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.374135 - 0: The maximum resident set size (KB) = 871540 + 0: The total amount of wall time = 90.378289 + 0: The maximum resident set size (KB) = 876280 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2221,46 +2221,46 @@ Checking test 044 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 173.756767 - 0: The maximum resident set size (KB) = 1598000 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 174.782522 + 0: The maximum resident set size (KB) = 1610016 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2271,46 +2271,46 @@ Checking test 045 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 157.600011 - 0: The maximum resident set size (KB) = 1688576 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 157.865878 + 0: The maximum resident set size (KB) = 1690152 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.063999 - 0: The maximum resident set size (KB) = 1612564 + 0: The total amount of wall time = 313.475411 + 0: The maximum resident set size (KB) = 1611608 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2351,46 +2351,46 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 224.113112 - 0: The maximum resident set size (KB) = 1669092 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 226.655728 + 0: The maximum resident set size (KB) = 1671456 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2405,46 +2405,46 @@ Checking test 048 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 172.152874 - 0: The maximum resident set size (KB) = 1611756 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 171.163728 + 0: The maximum resident set size (KB) = 1610664 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2459,46 +2459,46 @@ Checking test 049 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 190.416868 - 0: The maximum resident set size (KB) = 1621412 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 189.917400 + 0: The maximum resident set size (KB) = 1613924 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.009949 - 0: The maximum resident set size (KB) = 1090388 + 0: The total amount of wall time = 293.101845 + 0: The maximum resident set size (KB) = 1097848 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.182659 - 0: The maximum resident set size (KB) = 1083284 + 0: The total amount of wall time = 147.765498 + 0: The maximum resident set size (KB) = 1089576 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.267754 - 0: The maximum resident set size (KB) = 1100152 + 0: The total amount of wall time = 293.055168 + 0: The maximum resident set size (KB) = 1100716 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.979894 - 0: The maximum resident set size (KB) = 1088144 + 0: The total amount of wall time = 149.236345 + 0: The maximum resident set size (KB) = 1091744 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.440986 - 0: The maximum resident set size (KB) = 1092992 + 0: The total amount of wall time = 308.046030 + 0: The maximum resident set size (KB) = 1091088 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,43 +2591,43 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 176.527160 - 0: The maximum resident set size (KB) = 1084120 + 0: The total amount of wall time = 174.305344 + 0: The maximum resident set size (KB) = 1077108 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 288.672695 - 0: The maximum resident set size (KB) = 1362536 + 0: The total amount of wall time = 289.845309 + 0: The maximum resident set size (KB) = 1360876 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 288.303738 - 0: The maximum resident set size (KB) = 1071732 + 0: The total amount of wall time = 288.342940 + 0: The maximum resident set size (KB) = 1097608 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.595510 - 0: The maximum resident set size (KB) = 1098252 + 0: The total amount of wall time = 292.356333 + 0: The maximum resident set size (KB) = 1096344 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.070200 - 0: The maximum resident set size (KB) = 923092 + 0: The total amount of wall time = 372.971635 + 0: The maximum resident set size (KB) = 923964 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2678,46 +2678,46 @@ Checking test 060 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 447.147272 - 0: The maximum resident set size (KB) = 1234080 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 447.659263 + 0: The maximum resident set size (KB) = 1246052 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 229.995818 - 0: The maximum resident set size (KB) = 1197952 + 0: The total amount of wall time = 228.261994 + 0: The maximum resident set size (KB) = 1209316 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2750,46 +2750,46 @@ Checking test 062 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 466.050454 - 0: The maximum resident set size (KB) = 1159004 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 466.116599 + 0: The maximum resident set size (KB) = 1154316 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2804,92 +2804,92 @@ Checking test 063 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 418.263020 - 0: The maximum resident set size (KB) = 1294536 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 417.164612 + 0: The maximum resident set size (KB) = 1323816 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 226.995914 - 0: The maximum resident set size (KB) = 1136016 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 226.971723 + 0: The maximum resident set size (KB) = 1137636 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2904,46 +2904,46 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 445.639746 - 0: The maximum resident set size (KB) = 1231332 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 446.662768 + 0: The maximum resident set size (KB) = 1229340 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2958,92 +2958,92 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 482.056144 - 0: The maximum resident set size (KB) = 1171600 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 470.021052 + 0: The maximum resident set size (KB) = 1169332 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 332.170253 - 0: The maximum resident set size (KB) = 1168732 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 331.558873 + 0: The maximum resident set size (KB) = 1167936 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3058,46 +3058,46 @@ Checking test 068 hrrr_control_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 432.920914 - 0: The maximum resident set size (KB) = 1193764 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 431.296299 + 0: The maximum resident set size (KB) = 1175424 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,7 +3112,7 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.587579 - 0: The maximum resident set size (KB) = 1078224 + 0: The total amount of wall time = 430.154640 + 0: The maximum resident set size (KB) = 1077580 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,46 +3166,46 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 449.496425 - 0: The maximum resident set size (KB) = 1111264 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 448.466895 + 0: The maximum resident set size (KB) = 1122748 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,74 +3220,74 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 395.845277 - 0: The maximum resident set size (KB) = 1133808 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 395.301444 + 0: The maximum resident set size (KB) = 1137880 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.680363 - 0: The maximum resident set size (KB) = 1124872 + 0: The total amount of wall time = 320.671514 + 0: The maximum resident set size (KB) = 1117540 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.763067 - 0: The maximum resident set size (KB) = 1033800 + 0: The total amount of wall time = 323.381668 + 0: The maximum resident set size (KB) = 1019680 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3302,46 +3302,46 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 439.101278 - 0: The maximum resident set size (KB) = 1201588 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 440.631656 + 0: The maximum resident set size (KB) = 1204556 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.966388 - 0: The maximum resident set size (KB) = 800028 + 0: The total amount of wall time = 521.441302 + 0: The maximum resident set size (KB) = 764040 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3374,72 +3374,72 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 510.883154 - 0: The maximum resident set size (KB) = 914916 - -Test 076 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_gf_intel -Checking test 077 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 510.553405 + 0: The maximum resident set size (KB) = 909284 - 0: The total amount of wall time = 449.325781 - 0: The maximum resident set size (KB) = 1239440 +Test 076 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_gf_intel +Checking test 077 hrrr_gf_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 448.907895 + 0: The maximum resident set size (KB) = 1224752 Test 077 hrrr_gf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_c3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3454,46 +3454,46 @@ Checking test 078 hrrr_c3_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 450.922215 - 0: The maximum resident set size (KB) = 1236180 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 450.526981 + 0: The maximum resident set size (KB) = 1220344 Test 078 hrrr_c3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.154275 - 0: The maximum resident set size (KB) = 818808 + 0: The total amount of wall time = 342.913057 + 0: The maximum resident set size (KB) = 825936 Test 079 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3522,14 +3522,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.919702 - 0: The maximum resident set size (KB) = 789236 + 0: The total amount of wall time = 335.174779 + 0: The maximum resident set size (KB) = 814900 Test 080 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3540,26 +3540,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.621920 - 0: The maximum resident set size (KB) = 811576 + 0: The total amount of wall time = 187.668054 + 0: The maximum resident set size (KB) = 792120 Test 081 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.783865 - 0: The maximum resident set size (KB) = 701616 + 0: The total amount of wall time = 112.982394 + 0: The maximum resident set size (KB) = 706640 Test 082 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3574,46 +3574,46 @@ Checking test 083 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 154.956321 - 0: The maximum resident set size (KB) = 1607668 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 156.409393 + 0: The maximum resident set size (KB) = 1611268 Test 083 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.220475 - 0: The maximum resident set size (KB) = 1095596 + 0: The total amount of wall time = 264.369035 + 0: The maximum resident set size (KB) = 1091348 Test 084 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3658,348 +3658,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.620269 - 0: The maximum resident set size (KB) = 801560 + 0: The total amount of wall time = 148.171983 + 0: The maximum resident set size (KB) = 796584 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.986775 - 0: The maximum resident set size (KB) = 801856 + 0: The total amount of wall time = 148.564383 + 0: The maximum resident set size (KB) = 805520 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.758749 - 0: The maximum resident set size (KB) = 804408 + 0: The total amount of wall time = 167.076653 + 0: The maximum resident set size (KB) = 803724 Test 087 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.394274 - 0: The maximum resident set size (KB) = 801680 + 0: The total amount of wall time = 146.557789 + 0: The maximum resident set size (KB) = 802736 Test 088 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.835747 - 0: The maximum resident set size (KB) = 849804 + 0: The total amount of wall time = 229.923687 + 0: The maximum resident set size (KB) = 822448 Test 089 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.364953 - 0: The maximum resident set size (KB) = 843536 + 0: The total amount of wall time = 224.106712 + 0: The maximum resident set size (KB) = 850876 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.206177 - 0: The maximum resident set size (KB) = 813820 + 0: The total amount of wall time = 150.453720 + 0: The maximum resident set size (KB) = 807172 Test 091 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.696079 - 0: The maximum resident set size (KB) = 857796 + 0: The total amount of wall time = 152.193736 + 0: The maximum resident set size (KB) = 858772 Test 092 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.354781 - 0: The maximum resident set size (KB) = 1623352 + 0: The total amount of wall time = 163.616578 + 0: The maximum resident set size (KB) = 1625236 Test 093 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 972.560324 - 0: The maximum resident set size (KB) = 1096636 + 0: The total amount of wall time = 963.316813 + 0: The maximum resident set size (KB) = 1107336 Test 094 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.350421 - 0: The maximum resident set size (KB) = 1178668 + 0: The total amount of wall time = 271.143621 + 0: The maximum resident set size (KB) = 1184108 Test 095 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.332061 - 0: The maximum resident set size (KB) = 1191368 + 0: The total amount of wall time = 268.209794 + 0: The maximum resident set size (KB) = 1192464 Test 096 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.310540 - 0: The maximum resident set size (KB) = 1188560 + 0: The total amount of wall time = 270.567693 + 0: The maximum resident set size (KB) = 1189376 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.497249 - 0: The maximum resident set size (KB) = 1259608 + 0: The total amount of wall time = 290.380325 + 0: The maximum resident set size (KB) = 1261180 Test 098 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.602844 - 0: The maximum resident set size (KB) = 1183840 + 0: The total amount of wall time = 274.297937 + 0: The maximum resident set size (KB) = 1180256 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.372203 - 0: The maximum resident set size (KB) = 1189140 + 0: The total amount of wall time = 284.934070 + 0: The maximum resident set size (KB) = 1180952 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.756670 - 0: The maximum resident set size (KB) = 1178252 + 0: The total amount of wall time = 277.344371 + 0: The maximum resident set size (KB) = 1196608 Test 101 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.417339 - 0: The maximum resident set size (KB) = 1190144 + 0: The total amount of wall time = 263.033134 + 0: The maximum resident set size (KB) = 1194984 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.260161 - 0: The maximum resident set size (KB) = 1186128 + 0: The total amount of wall time = 265.460486 + 0: The maximum resident set size (KB) = 1186620 Test 103 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.106148 - 0: The maximum resident set size (KB) = 1191072 + 0: The total amount of wall time = 277.262181 + 0: The maximum resident set size (KB) = 1193500 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 447.048107 - 0: The maximum resident set size (KB) = 1192428 + 0: The total amount of wall time = 446.860627 + 0: The maximum resident set size (KB) = 1186728 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.231002 - 0: The maximum resident set size (KB) = 1183788 + 0: The total amount of wall time = 268.254361 + 0: The maximum resident set size (KB) = 1178688 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 332.657927 - 0: The maximum resident set size (KB) = 1180416 + 0: The total amount of wall time = 330.403266 + 0: The maximum resident set size (KB) = 1185808 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.274942 - 0: The maximum resident set size (KB) = 1184044 + 0: The total amount of wall time = 271.286459 + 0: The maximum resident set size (KB) = 1178812 Test 108 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.541531 - 0: The maximum resident set size (KB) = 586224 + 0: The total amount of wall time = 273.900179 + 0: The maximum resident set size (KB) = 560376 Test 109 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +4010,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 219.037195 - 0: The maximum resident set size (KB) = 1104932 + 0: The total amount of wall time = 224.679681 + 0: The maximum resident set size (KB) = 1102580 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4032,46 +4032,46 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 370.925293 - 0: The maximum resident set size (KB) = 1105820 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 369.158328 + 0: The maximum resident set size (KB) = 1101132 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4086,46 +4086,46 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 190.996455 - 0: The maximum resident set size (KB) = 1031048 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 190.888027 + 0: The maximum resident set size (KB) = 1027268 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4140,7 +4140,7 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.680965 - 0: The maximum resident set size (KB) = 981740 + 0: The total amount of wall time = 190.932460 + 0: The maximum resident set size (KB) = 979700 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4194,46 +4194,46 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 354.396239 - 0: The maximum resident set size (KB) = 1131668 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 345.901047 + 0: The maximum resident set size (KB) = 1125884 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4248,174 +4248,174 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 175.046883 - 0: The maximum resident set size (KB) = 971088 - -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 175.221424 + 0: The maximum resident set size (KB) = 973824 - 0: The total amount of wall time = 201.663746 - 0: The maximum resident set size (KB) = 973820 +Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_dyn32_phy32_intel +Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 201.109288 + 0: The maximum resident set size (KB) = 970236 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 273.560744 - 0: The maximum resident set size (KB) = 1041736 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 275.524705 + 0: The maximum resident set size (KB) = 1050504 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.679398 - 0: The maximum resident set size (KB) = 940880 + 0: The total amount of wall time = 99.099763 + 0: The maximum resident set size (KB) = 940504 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.611416 - 0: The maximum resident set size (KB) = 883744 + 0: The total amount of wall time = 101.334301 + 0: The maximum resident set size (KB) = 888056 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4424,47 +4424,47 @@ Checking test 120 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 111.870238 - 0: The maximum resident set size (KB) = 1253172 + 0: The total amount of wall time = 114.190437 + 0: The maximum resident set size (KB) = 1223592 Test 120 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 44.318534 - 0: The maximum resident set size (KB) = 1168228 + 0: The total amount of wall time = 45.803698 + 0: The maximum resident set size (KB) = 1168352 Test 121 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 63.500540 - 0: The maximum resident set size (KB) = 1188548 + 0: The total amount of wall time = 62.508376 + 0: The maximum resident set size (KB) = 1191144 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4479,155 +4479,155 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 243.040379 - 0: The maximum resident set size (KB) = 1097388 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 246.529848 + 0: The maximum resident set size (KB) = 1098752 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.525842 - 0: The maximum resident set size (KB) = 1070308 + 0: The total amount of wall time = 268.584967 + 0: The maximum resident set size (KB) = 1077648 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.950498 - 0: The maximum resident set size (KB) = 1069192 + 0: The total amount of wall time = 261.358356 + 0: The maximum resident set size (KB) = 1073968 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 822.512732 - 0: The maximum resident set size (KB) = 1267740 + 0: The total amount of wall time = 801.346579 + 0: The maximum resident set size (KB) = 1270392 Test 126 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.538048 - 0: The maximum resident set size (KB) = 1199940 + 0: The total amount of wall time = 463.687905 + 0: The maximum resident set size (KB) = 1197472 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_radar_tten_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 827.081012 - 0: The maximum resident set size (KB) = 1326364 + 0: The total amount of wall time = 808.647764 + 0: The maximum resident set size (KB) = 1339172 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.961507 - 0: The maximum resident set size (KB) = 1111876 + 0: The total amount of wall time = 272.178960 + 0: The maximum resident set size (KB) = 1109880 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 231.238123 - 0: The maximum resident set size (KB) = 1238460 + 0: The total amount of wall time = 223.177806 + 0: The maximum resident set size (KB) = 1241480 Test 130 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 362.267084 - 0: The maximum resident set size (KB) = 1570920 + 0: The total amount of wall time = 320.883796 + 0: The maximum resident set size (KB) = 1576648 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 370.246700 - 0: The maximum resident set size (KB) = 1411008 + 0: The total amount of wall time = 371.892971 + 0: The maximum resident set size (KB) = 1412184 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4652,14 +4652,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 736.977679 - 0: The maximum resident set size (KB) = 1443120 + 0: The total amount of wall time = 744.297205 + 0: The maximum resident set size (KB) = 1407152 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4670,51 +4670,51 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 844.705119 - 0: The maximum resident set size (KB) = 1466972 + 0: The total amount of wall time = 852.574572 + 0: The maximum resident set size (KB) = 1457080 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 296.599640 - 0: The maximum resident set size (KB) = 657808 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 295.403562 + 0: The maximum resident set size (KB) = 656932 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4725,17 +4725,17 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 306.686506 - 0: The maximum resident set size (KB) = 499664 + 0: The total amount of wall time = 303.516177 + 0: The maximum resident set size (KB) = 498388 Test 136 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,76 +4744,76 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 341.413482 - 0: The maximum resident set size (KB) = 666788 + 0: The total amount of wall time = 339.219548 + 0: The maximum resident set size (KB) = 655328 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 138.899068 - 0: The maximum resident set size (KB) = 401968 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 135.845391 + 0: The maximum resident set size (KB) = 403084 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4849,17 +4849,17 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 145.727957 - 0: The maximum resident set size (KB) = 348804 + 0: The total amount of wall time = 143.524034 + 0: The maximum resident set size (KB) = 375628 Test 139 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4877,78 +4877,78 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 388.129371 - 0: The maximum resident set size (KB) = 478808 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 384.442946 + 0: The maximum resident set size (KB) = 477284 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4966,14 +4966,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -5021,23 +5021,23 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 404.056148 - 0: The maximum resident set size (KB) = 481408 + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 409.728415 + 0: The maximum resident set size (KB) = 471496 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5046,51 +5046,51 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 193.458659 - 0: The maximum resident set size (KB) = 670268 + 0: The total amount of wall time = 192.500164 + 0: The maximum resident set size (KB) = 667080 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 180.488058 - 0: The maximum resident set size (KB) = 665512 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 178.543963 + 0: The maximum resident set size (KB) = 672196 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -5101,17 +5101,17 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 197.109022 - 0: The maximum resident set size (KB) = 532060 + 0: The total amount of wall time = 191.761210 + 0: The maximum resident set size (KB) = 528384 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,42 +5120,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 218.819019 - 0: The maximum resident set size (KB) = 716360 + 0: The total amount of wall time = 220.883774 + 0: The maximum resident set size (KB) = 716812 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 54.776640 - 0: The maximum resident set size (KB) = 415192 + 0: The total amount of wall time = 57.293366 + 0: The maximum resident set size (KB) = 415472 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 715.897811 - 0: The maximum resident set size (KB) = 725756 + 0: The total amount of wall time = 714.353946 + 0: The maximum resident set size (KB) = 726128 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.417772 - 0: The maximum resident set size (KB) = 803576 + 0: The total amount of wall time = 479.320244 + 0: The maximum resident set size (KB) = 806056 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,14 +5181,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 330.292028 - 0: The maximum resident set size (KB) = 1392076 + 0: The total amount of wall time = 335.812338 + 0: The maximum resident set size (KB) = 1402988 Test 149 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,131 +5196,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 333.666710 - 0: The maximum resident set size (KB) = 1388044 + 0: The total amount of wall time = 336.791256 + 0: The maximum resident set size (KB) = 1400592 Test 150 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 996.178251 - 0: The maximum resident set size (KB) = 1154688 + 0: The total amount of wall time = 970.003390 + 0: The maximum resident set size (KB) = 1155568 Test 151 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.144831 - 0: The maximum resident set size (KB) = 1117892 + 0: The total amount of wall time = 154.890484 + 0: The maximum resident set size (KB) = 1117352 Test 152 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.652401 - 0: The maximum resident set size (KB) = 1070476 + 0: The total amount of wall time = 92.128564 + 0: The maximum resident set size (KB) = 1054828 Test 153 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.691887 - 0: The maximum resident set size (KB) = 1004300 + 0: The total amount of wall time = 151.211607 + 0: The maximum resident set size (KB) = 999456 Test 154 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.156520 - 0: The maximum resident set size (KB) = 999968 + 0: The total amount of wall time = 151.519798 + 0: The maximum resident set size (KB) = 995772 Test 155 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.818506 - 0: The maximum resident set size (KB) = 1006496 + 0: The total amount of wall time = 152.540653 + 0: The maximum resident set size (KB) = 994948 Test 156 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.305040 - 0: The maximum resident set size (KB) = 1117412 + 0: The total amount of wall time = 153.586789 + 0: The maximum resident set size (KB) = 1114040 Test 157 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.064243 - 0: The maximum resident set size (KB) = 1103744 + 0: The total amount of wall time = 153.440011 + 0: The maximum resident set size (KB) = 1104372 Test 158 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.656932 - 0: The maximum resident set size (KB) = 999844 + 0: The total amount of wall time = 144.800523 + 0: The maximum resident set size (KB) = 1000244 Test 159 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 409.309199 - 0: The maximum resident set size (KB) = 1030264 + 0: The total amount of wall time = 428.862940 + 0: The maximum resident set size (KB) = 1039376 Test 160 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5345,77 +5345,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.719088 - 0: The maximum resident set size (KB) = 1033252 + 0: The total amount of wall time = 433.231524 + 0: The maximum resident set size (KB) = 1017760 Test 161 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.824936 - 0: The maximum resident set size (KB) = 1110008 + 0: The total amount of wall time = 154.496166 + 0: The maximum resident set size (KB) = 1113552 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 224.961452 - 0: The maximum resident set size (KB) = 2413060 + 0: The total amount of wall time = 224.198660 + 0: The maximum resident set size (KB) = 2468640 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 231.336208 - 0: The maximum resident set size (KB) = 2458180 + 0: The total amount of wall time = 233.522725 + 0: The maximum resident set size (KB) = 2470700 Test 164 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 355.592543 - 0: The maximum resident set size (KB) = 1040528 + 0: The total amount of wall time = 355.827849 + 0: The maximum resident set size (KB) = 1038052 Test 165 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.317428 - 0: The maximum resident set size (KB) = 1106972 + 0: The total amount of wall time = 153.069173 + 0: The maximum resident set size (KB) = 1112564 Test 166 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5424,14 +5424,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.475966 - 0: The maximum resident set size (KB) = 252484 + 0: The total amount of wall time = 6.054305 + 0: The maximum resident set size (KB) = 254488 Test 167 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5440,14 +5440,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.395402 - 0: The maximum resident set size (KB) = 256508 + 0: The total amount of wall time = 10.275905 + 0: The maximum resident set size (KB) = 249976 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5486,110 +5486,110 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 203.395960 - 0: The maximum resident set size (KB) = 1617332 + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 204.261343 + 0: The maximum resident set size (KB) = 1616096 Test 169 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.508548 - 0: The maximum resident set size (KB) = 1645080 + 0: The total amount of wall time = 94.424949 + 0: The maximum resident set size (KB) = 1644072 Test 170 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5600,47 +5600,47 @@ Checking test 171 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.792070 - 0: The maximum resident set size (KB) = 664048 + 0: The total amount of wall time = 88.435278 + 0: The maximum resident set size (KB) = 659004 Test 171 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5652,97 +5652,97 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 228.230129 - 0: The maximum resident set size (KB) = 2996156 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 232.344313 + 0: The maximum resident set size (KB) = 2998520 Test 172 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 280.877626 - 0: The maximum resident set size (KB) = 3070028 + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.905345 + 0: The maximum resident set size (KB) = 3064464 Test 173 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5754,46 +5754,46 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 284.641799 - 0: The maximum resident set size (KB) = 3069424 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 289.083445 + 0: The maximum resident set size (KB) = 3077600 Test 174 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5802,42 +5802,42 @@ Checking test 175 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 640.856243 - 0: The maximum resident set size (KB) = 5408124 + 0: The total amount of wall time = 628.951944 + 0: The maximum resident set size (KB) = 5437292 Test 175 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1191.546790 - 0: The maximum resident set size (KB) = 4875096 + 0: The total amount of wall time = 1196.039117 + 0: The maximum resident set size (KB) = 4728616 Test 176 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_atmaq_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5846,67 +5846,67 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 555.020811 - 0: The maximum resident set size (KB) = 5429432 + 0: The total amount of wall time = 561.026025 + 0: The maximum resident set size (KB) = 5398080 Test 177 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c48_gnu Checking test 178 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0: The total amount of wall time = 683.968973 -0: The maximum resident set size (KB) = 730856 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 688.104021 +0: The maximum resident set size (KB) = 730200 Test 178 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_gnu Checking test 179 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5917,14 +5917,14 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 228.166318 - 0: The maximum resident set size (KB) = 540576 + 0: The total amount of wall time = 227.523786 + 0: The maximum resident set size (KB) = 537552 Test 179 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_gnu Checking test 180 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5935,14 +5935,14 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 279.152295 - 0: The maximum resident set size (KB) = 545320 + 0: The total amount of wall time = 284.297015 + 0: The maximum resident set size (KB) = 515600 Test 180 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_gnu Checking test 181 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5957,46 +5957,46 @@ Checking test 181 control_p8_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 296.783843 - 0: The maximum resident set size (KB) = 1294436 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 295.185187 + 0: The maximum resident set size (KB) = 1296728 Test 181 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_flake_gnu Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.115074 - 0: The maximum resident set size (KB) = 582612 + 0: The total amount of wall time = 335.466171 + 0: The maximum resident set size (KB) = 585720 Test 182 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_gnu Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6029,46 +6029,46 @@ Checking test 183 rap_control_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 680.520957 - 0: The maximum resident set size (KB) = 849012 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 681.331554 + 0: The maximum resident set size (KB) = 851724 Test 183 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_decomp_gnu Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6083,46 +6083,46 @@ Checking test 184 rap_decomp_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 687.287630 - 0: The maximum resident set size (KB) = 844736 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 679.788557 + 0: The maximum resident set size (KB) = 848180 Test 184 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_gnu Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6137,92 +6137,92 @@ Checking test 185 rap_2threads_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 618.761596 - 0: The maximum resident set size (KB) = 951396 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 610.547882 + 0: The maximum resident set size (KB) = 957800 Test 185 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_gnu Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 345.118911 - 0: The maximum resident set size (KB) = 756876 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 349.079809 + 0: The maximum resident set size (KB) = 752188 Test 186 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_gnu Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6237,46 +6237,46 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 678.478296 - 0: The maximum resident set size (KB) = 850080 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 681.110044 + 0: The maximum resident set size (KB) = 849624 Test 187 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_decomp_gnu Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6291,92 +6291,92 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 696.922240 - 0: The maximum resident set size (KB) = 843528 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 699.317115 + 0: The maximum resident set size (KB) = 851184 Test 188 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_restart_gnu Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 511.458515 - 0: The maximum resident set size (KB) = 762060 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 510.216545 + 0: The maximum resident set size (KB) = 759760 Test 189 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_gnu Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6391,46 +6391,46 @@ Checking test 190 hrrr_control_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 657.117147 - 0: The maximum resident set size (KB) = 841328 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 649.899251 + 0: The maximum resident set size (KB) = 844372 Test 190 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_gnu Checking test 191 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6445,7 +6445,7 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -6477,14 +6477,14 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 654.992154 - 0: The maximum resident set size (KB) = 851948 + 0: The total amount of wall time = 662.250277 + 0: The maximum resident set size (KB) = 861028 Test 191 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_gnu Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6499,46 +6499,46 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 580.810941 - 0: The maximum resident set size (KB) = 953556 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 576.137172 + 0: The maximum resident set size (KB) = 954828 Test 192 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_gnu Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6553,74 +6553,74 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 650.432798 - 0: The maximum resident set size (KB) = 845716 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 660.364902 + 0: The maximum resident set size (KB) = 844216 Test 193 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_gnu Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 496.712330 - 0: The maximum resident set size (KB) = 709800 + 0: The total amount of wall time = 488.133598 + 0: The maximum resident set size (KB) = 710860 Test 194 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_gnu Checking test 195 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 494.716711 - 0: The maximum resident set size (KB) = 613420 + 0: The total amount of wall time = 492.054208 + 0: The maximum resident set size (KB) = 607756 Test 195 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_gnu Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6635,46 +6635,46 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 667.008228 - 0: The maximum resident set size (KB) = 847796 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 664.035611 + 0: The maximum resident set size (KB) = 843788 Test 196 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_gf_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_gf_gnu Checking test 197 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6689,294 +6689,294 @@ Checking test 197 hrrr_gf_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 682.033773 - 0: The maximum resident set size (KB) = 843752 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 677.355856 + 0: The maximum resident set size (KB) = 848396 Test 197 hrrr_gf_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 83.550917 - 0: The maximum resident set size (KB) = 546564 + 0: The total amount of wall time = 84.130229 + 0: The maximum resident set size (KB) = 585584 Test 198 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 431.626608 - 0: The maximum resident set size (KB) = 813652 + 0: The total amount of wall time = 439.053488 + 0: The maximum resident set size (KB) = 821096 Test 199 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.653041 - 0: The maximum resident set size (KB) = 861800 + 0: The total amount of wall time = 135.594960 + 0: The maximum resident set size (KB) = 860584 Test 200 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.614036 - 0: The maximum resident set size (KB) = 855268 + 0: The total amount of wall time = 132.832776 + 0: The maximum resident set size (KB) = 856552 Test 201 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.850174 - 0: The maximum resident set size (KB) = 941084 + 0: The total amount of wall time = 150.077170 + 0: The maximum resident set size (KB) = 941920 Test 202 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.343807 - 0: The maximum resident set size (KB) = 896504 + 0: The total amount of wall time = 220.421928 + 0: The maximum resident set size (KB) = 861932 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.257078 - 0: The maximum resident set size (KB) = 893956 + 0: The total amount of wall time = 137.886686 + 0: The maximum resident set size (KB) = 897524 Test 204 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.171262 - 0: The maximum resident set size (KB) = 856596 + 0: The total amount of wall time = 135.491463 + 0: The maximum resident set size (KB) = 889020 Test 205 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 78.419958 - 0: The maximum resident set size (KB) = 537764 + 0: The total amount of wall time = 77.125239 + 0: The maximum resident set size (KB) = 500452 Test 206 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.288223 - 0: The maximum resident set size (KB) = 494888 + 0: The total amount of wall time = 117.236329 + 0: The maximum resident set size (KB) = 495380 Test 207 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 89.883364 - 0: The maximum resident set size (KB) = 1280944 + 0: The total amount of wall time = 88.487509 + 0: The maximum resident set size (KB) = 1287836 Test 208 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.802355 - 0: The maximum resident set size (KB) = 864276 + 0: The total amount of wall time = 137.473172 + 0: The maximum resident set size (KB) = 855076 Test 209 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.780676 - 0: The maximum resident set size (KB) = 894916 + 0: The total amount of wall time = 152.534203 + 0: The maximum resident set size (KB) = 896952 Test 210 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_debug_gnu Checking test 211 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 132.778615 - 0: The maximum resident set size (KB) = 285940 + 0: The total amount of wall time = 135.162524 + 0: The maximum resident set size (KB) = 284728 Test 211 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 697.764019 - 0: The maximum resident set size (KB) = 743964 + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 700.080856 + 0: The maximum resident set size (KB) = 744240 Test 212 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6991,46 +6991,46 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 352.922660 - 0: The maximum resident set size (KB) = 738740 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 354.294969 + 0: The maximum resident set size (KB) = 743648 Test 213 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7045,7 +7045,7 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -7077,14 +7077,14 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.944293 - 0: The maximum resident set size (KB) = 754952 + 0: The total amount of wall time = 354.340166 + 0: The maximum resident set size (KB) = 749928 Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7099,46 +7099,46 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 620.304940 - 0: The maximum resident set size (KB) = 788856 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 618.152665 + 0: The maximum resident set size (KB) = 795432 Test 215 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7153,46 +7153,46 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 307.470355 - 0: The maximum resident set size (KB) = 786344 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 305.352331 + 0: The maximum resident set size (KB) = 787652 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7207,120 +7207,120 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 353.432992 - 0: The maximum resident set size (KB) = 741220 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 349.822143 + 0: The maximum resident set size (KB) = 744252 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 524.547668 - 0: The maximum resident set size (KB) = 650696 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 521.306413 + 0: The maximum resident set size (KB) = 658560 Test 218 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.107626 - 0: The maximum resident set size (KB) = 615604 + 0: The total amount of wall time = 183.698259 + 0: The maximum resident set size (KB) = 616960 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.668350 - 0: The maximum resident set size (KB) = 579240 + 0: The total amount of wall time = 183.413040 + 0: The maximum resident set size (KB) = 582464 Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_control_gnu Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7329,47 +7329,47 @@ Checking test 221 conus13km_control_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 241.448777 - 0: The maximum resident set size (KB) = 954544 + 0: The total amount of wall time = 242.794066 + 0: The maximum resident set size (KB) = 954460 Test 221 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_2threads_gnu Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.805849 - 0: The maximum resident set size (KB) = 999776 + 0: The total amount of wall time = 101.983873 + 0: The maximum resident set size (KB) = 995376 Test 222 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_restart_mismatch_gnu Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.281489 - 0: The maximum resident set size (KB) = 608028 + 0: The total amount of wall time = 128.047727 + 0: The maximum resident set size (KB) = 610112 Test 223 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7384,130 +7384,130 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 407.102249 - 0: The maximum resident set size (KB) = 766296 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 401.263737 + 0: The maximum resident set size (KB) = 764876 Test 224 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_dyn32_phy32_gnu Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.518793 - 0: The maximum resident set size (KB) = 752464 + 0: The total amount of wall time = 138.620635 + 0: The maximum resident set size (KB) = 760396 Test 225 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_dyn32_phy32_gnu Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.295758 - 0: The maximum resident set size (KB) = 748892 + 0: The total amount of wall time = 134.100644 + 0: The maximum resident set size (KB) = 754556 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_gnu Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 417.614521 - 0: The maximum resident set size (KB) = 967380 + 0: The total amount of wall time = 414.996879 + 0: The maximum resident set size (KB) = 971384 Test 227 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.257242 - 0: The maximum resident set size (KB) = 1013028 + 0: The total amount of wall time = 253.501979 + 0: The maximum resident set size (KB) = 1004660 Test 228 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/conus13km_radar_tten_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 427.936123 - 0: The maximum resident set size (KB) = 1034132 + 0: The total amount of wall time = 419.541075 + 0: The maximum resident set size (KB) = 1037748 Test 229 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.458124 - 0: The maximum resident set size (KB) = 773136 + 0: The total amount of wall time = 142.009880 + 0: The maximum resident set size (KB) = 772128 Test 230 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7535,51 +7535,51 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.003881 - 0: The maximum resident set size (KB) = 1510124 + 0: The total amount of wall time = 625.782832 + 0: The maximum resident set size (KB) = 1512588 Test 231 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7606,49 +7606,49 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 405.027457 - 0: The maximum resident set size (KB) = 1402496 + 0: The total amount of wall time = 410.627213 + 0: The maximum resident set size (KB) = 1402584 Test 232 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7664,51 +7664,51 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.664799 - 0: The maximum resident set size (KB) = 1515168 + 0: The total amount of wall time = 363.692501 + 0: The maximum resident set size (KB) = 1517688 Test 233 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7735,51 +7735,51 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1417.975757 - 0: The maximum resident set size (KB) = 1377684 + 0: The total amount of wall time = 1416.005911 + 0: The maximum resident set size (KB) = 1381688 Test 234 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7794,62 +7794,62 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 711.525487 - 0: The maximum resident set size (KB) = 1390108 + 0: The total amount of wall time = 714.596409 + 0: The maximum resident set size (KB) = 1386272 Test 235 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11296/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.706197 - 0: The maximum resident set size (KB) = 691404 + 0: The total amount of wall time = 169.005496 + 0: The maximum resident set size (KB) = 690100 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 20 02:39:27 UTC 2023 -Elapsed time: 01h:36m:44s. Have a nice day! +Thu Sep 21 06:46:50 UTC 2023 +Elapsed time: 01h:45m:55s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 31fe46ab8c..ec2d02f1d9 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,11 +1,11 @@ -Tue Sep 19 19:50:53 CDT 2023 +Thu Sep 21 08:50:24 CDT 2023 Start Regression test -Testing UFSWM Hash: 2a52dbceeb2915150b2d513f3dd777f9f29707ab +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,58 +15,58 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 216 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 540 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 257 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 401 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 562 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 380 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 378 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 577 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 547 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 120 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 628 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 211 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 633 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 493 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 205 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 554 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 342 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 743 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 125 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 365 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 233 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 709 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 111 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 362 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 203 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 191 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 525 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 193 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 321 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 389 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 622 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 399 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 573 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 135 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 178 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 652 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 581 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 517 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 546 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 242 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 546 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 316 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 658 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 145 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 254 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 734 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 152 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 334 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 273 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 723 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 132 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.459548 - 0: The maximum resident set size (KB) = 1888348 + 0: The total amount of wall time = 440.129533 + 0: The maximum resident set size (KB) = 1885312 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 459.508624 - 0: The maximum resident set size (KB) = 1730176 + 0: The total amount of wall time = 480.767902 + 0: The maximum resident set size (KB) = 1727228 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 456.902754 - 0: The maximum resident set size (KB) = 2045324 + 0: The total amount of wall time = 439.786070 + 0: The maximum resident set size (KB) = 2038716 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 245.432613 - 0: The maximum resident set size (KB) = 1904588 + 0: The total amount of wall time = 242.889260 + 0: The maximum resident set size (KB) = 1924052 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.052505 - 0: The maximum resident set size (KB) = 1971676 + 0: The total amount of wall time = 435.832031 + 0: The maximum resident set size (KB) = 1976616 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +466,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.181115 - 0: The maximum resident set size (KB) = 1549652 + 0: The total amount of wall time = 247.186691 + 0: The maximum resident set size (KB) = 1541720 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,14 +526,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 523.942493 - 0: The maximum resident set size (KB) = 2464436 + 0: The total amount of wall time = 521.229788 + 0: The maximum resident set size (KB) = 2472280 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +586,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 434.233962 - 0: The maximum resident set size (KB) = 2035572 + 0: The total amount of wall time = 436.949142 + 0: The maximum resident set size (KB) = 2045684 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +646,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.157138 - 0: The maximum resident set size (KB) = 1867572 + 0: The total amount of wall time = 375.385624 + 0: The maximum resident set size (KB) = 1882604 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.513341 - 0: The maximum resident set size (KB) = 2035472 + 0: The total amount of wall time = 431.496640 + 0: The maximum resident set size (KB) = 2065740 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +778,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 908.472561 - 0: The maximum resident set size (KB) = 2794028 + 0: The total amount of wall time = 903.843153 + 0: The maximum resident set size (KB) = 2802468 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +838,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 333.643757 - 0: The maximum resident set size (KB) = 2815468 + 0: The total amount of wall time = 330.051956 + 0: The maximum resident set size (KB) = 2812496 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 545.099165 - 0: The maximum resident set size (KB) = 3600676 + 0: The total amount of wall time = 532.602052 + 0: The maximum resident set size (KB) = 3608832 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.800203 - 0: The maximum resident set size (KB) = 3508664 + 0: The total amount of wall time = 332.377434 + 0: The maximum resident set size (KB) = 3520392 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1019,14 +1019,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 407.358410 - 0: The maximum resident set size (KB) = 1781048 + 0: The total amount of wall time = 401.307076 + 0: The maximum resident set size (KB) = 1784272 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1088,14 +1088,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 242.416007 - 0: The maximum resident set size (KB) = 1824016 + 0: The total amount of wall time = 237.558139 + 0: The maximum resident set size (KB) = 1817988 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1148,14 +1148,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.892426 - 0: The maximum resident set size (KB) = 2022740 + 0: The total amount of wall time = 427.656862 + 0: The maximum resident set size (KB) = 2033508 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.353003 - 0: The maximum resident set size (KB) = 1803888 + 0: The total amount of wall time = 295.177801 + 0: The maximum resident set size (KB) = 1800212 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1276,14 +1276,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 244.195535 - 0: The maximum resident set size (KB) = 1821480 + 0: The total amount of wall time = 235.117738 + 0: The maximum resident set size (KB) = 1827884 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1333,14 +1333,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 447.835994 - 0: The maximum resident set size (KB) = 2832352 + 0: The total amount of wall time = 455.578404 + 0: The maximum resident set size (KB) = 2832856 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1405,14 +1405,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.858429 - 0: The maximum resident set size (KB) = 2053532 + 0: The total amount of wall time = 416.628664 + 0: The maximum resident set size (KB) = 2051344 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.435192 - 0: The maximum resident set size (KB) = 775240 + 0: The total amount of wall time = 219.607601 + 0: The maximum resident set size (KB) = 774664 Test 022 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1457,36 +1457,36 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 123.466812 - 0: The maximum resident set size (KB) = 677672 + 0: The total amount of wall time = 114.038112 + 0: The maximum resident set size (KB) = 688216 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1041.076855 - 0: The maximum resident set size (KB) = 698984 + 0: The total amount of wall time = 984.717840 + 0: The maximum resident set size (KB) = 686720 Test 024 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 124.225234 - 0: The maximum resident set size (KB) = 679448 + 0: The total amount of wall time = 167.478774 + 0: The maximum resident set size (KB) = 680788 Test 025 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1515,14 +1515,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.538208 - 0: The maximum resident set size (KB) = 678732 + 0: The total amount of wall time = 201.879581 + 0: The maximum resident set size (KB) = 682512 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 341.273429 -0: The maximum resident set size (KB) = 819680 +0: The total amount of wall time = 336.915955 +0: The maximum resident set size (KB) = 817352 Test 027 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 479.858862 - 0: The maximum resident set size (KB) = 896844 + 0: The total amount of wall time = 461.971994 + 0: The maximum resident set size (KB) = 930380 Test 028 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1597,14 +1597,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 475.869156 - 0: The maximum resident set size (KB) = 1582836 + 0: The total amount of wall time = 459.417712 + 0: The maximum resident set size (KB) = 1602880 Test 029 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1647,14 +1647,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.818973 - 0: The maximum resident set size (KB) = 1648300 + 0: The total amount of wall time = 406.662868 + 0: The maximum resident set size (KB) = 1653160 Test 030 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1665,28 +1665,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.387356 - 0: The maximum resident set size (KB) = 672432 + 0: The total amount of wall time = 139.970972 + 0: The maximum resident set size (KB) = 664748 Test 031 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.113563 - 0: The maximum resident set size (KB) = 612952 + 0: The total amount of wall time = 42.392163 + 0: The maximum resident set size (KB) = 609056 Test 032 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1697,14 +1697,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.716683 - 0: The maximum resident set size (KB) = 670232 + 0: The total amount of wall time = 132.001112 + 0: The maximum resident set size (KB) = 670484 Test 033 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.665777 - 0: The maximum resident set size (KB) = 710636 + 0: The total amount of wall time = 199.165537 + 0: The maximum resident set size (KB) = 710960 Test 034 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.482474 - 0: The maximum resident set size (KB) = 709060 + 0: The total amount of wall time = 129.345718 + 0: The maximum resident set size (KB) = 705236 Test 035 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.420765 - 0: The maximum resident set size (KB) = 1628072 + 0: The total amount of wall time = 190.718911 + 0: The maximum resident set size (KB) = 1622284 Test 036 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.665930 - 0: The maximum resident set size (KB) = 975560 + 0: The total amount of wall time = 78.162201 + 0: The maximum resident set size (KB) = 990920 Test 037 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 217.172456 - 0: The maximum resident set size (KB) = 1642360 + 0: The total amount of wall time = 157.705744 + 0: The maximum resident set size (KB) = 1636436 Test 038 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 133.876644 - 0: The maximum resident set size (KB) = 901364 + 0: The total amount of wall time = 81.242706 + 0: The maximum resident set size (KB) = 899944 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,14 +1991,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.446469 - 0: The maximum resident set size (KB) = 1618104 + 0: The total amount of wall time = 202.422167 + 0: The maximum resident set size (KB) = 1617428 Test 040 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.739735 - 0: The maximum resident set size (KB) = 1713452 + 0: The total amount of wall time = 193.529544 + 0: The maximum resident set size (KB) = 1708164 Test 041 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 284.284718 - 0: The maximum resident set size (KB) = 1630760 + 0: The total amount of wall time = 274.544358 + 0: The maximum resident set size (KB) = 1627612 Test 042 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.604565 - 0: The maximum resident set size (KB) = 1702244 + 0: The total amount of wall time = 201.456996 + 0: The maximum resident set size (KB) = 1700068 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.556576 - 0: The maximum resident set size (KB) = 1631076 + 0: The total amount of wall time = 202.629164 + 0: The maximum resident set size (KB) = 1631260 Test 044 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2229,14 +2229,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.010249 - 0: The maximum resident set size (KB) = 1635712 + 0: The total amount of wall time = 214.993643 + 0: The maximum resident set size (KB) = 1637268 Test 045 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2247,28 +2247,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 258.934048 - 0: The maximum resident set size (KB) = 1236564 + 0: The total amount of wall time = 253.416221 + 0: The maximum resident set size (KB) = 1227228 Test 046 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 135.663892 - 0: The maximum resident set size (KB) = 1212824 + 0: The total amount of wall time = 127.727405 + 0: The maximum resident set size (KB) = 1217184 Test 047 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2279,28 +2279,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.666347 - 0: The maximum resident set size (KB) = 1227372 + 0: The total amount of wall time = 244.747712 + 0: The maximum resident set size (KB) = 1229696 Test 048 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 135.586651 - 0: The maximum resident set size (KB) = 1215432 + 0: The total amount of wall time = 130.741232 + 0: The maximum resident set size (KB) = 1211272 Test 049 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2311,14 +2311,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 282.733955 - 0: The maximum resident set size (KB) = 1211916 + 0: The total amount of wall time = 265.233998 + 0: The maximum resident set size (KB) = 1210964 Test 050 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 166.343521 - 0: The maximum resident set size (KB) = 1148280 + 0: The total amount of wall time = 156.366830 + 0: The maximum resident set size (KB) = 1149128 Test 051 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2344,28 +2344,22 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 263.163992 - 0: The maximum resident set size (KB) = 1488428 + 0: The total amount of wall time = 252.577248 + 0: The maximum resident set size (KB) = 1485600 Test 052 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 274.187409 - 0: The maximum resident set size (KB) = 1214704 + Comparing phyf006.nc ............ALT CHECK......ERROR -Test 053 regional_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2376,14 +2370,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.678587 - 0: The maximum resident set size (KB) = 1229136 + 0: The total amount of wall time = 246.531605 + 0: The maximum resident set size (KB) = 1228100 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2394,14 +2388,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.577831 - 0: The maximum resident set size (KB) = 1106768 + 0: The total amount of wall time = 317.404350 + 0: The maximum resident set size (KB) = 1107384 Test 055 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2448,14 +2442,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.661479 - 0: The maximum resident set size (KB) = 1409280 + 0: The total amount of wall time = 385.567677 + 0: The maximum resident set size (KB) = 1396484 Test 056 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2466,14 +2460,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 252.674390 - 0: The maximum resident set size (KB) = 1320520 + 0: The total amount of wall time = 248.173877 + 0: The maximum resident set size (KB) = 1322760 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2520,14 +2514,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.507644 - 0: The maximum resident set size (KB) = 1339908 + 0: The total amount of wall time = 401.378059 + 0: The maximum resident set size (KB) = 1343912 Test 058 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2574,14 +2568,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.127702 - 0: The maximum resident set size (KB) = 1547208 + 0: The total amount of wall time = 382.264041 + 0: The maximum resident set size (KB) = 1547540 Test 059 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2620,14 +2614,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.130924 - 0: The maximum resident set size (KB) = 1225208 + 0: The total amount of wall time = 248.491372 + 0: The maximum resident set size (KB) = 1235392 Test 060 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2674,14 +2668,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.253780 - 0: The maximum resident set size (KB) = 1418180 + 0: The total amount of wall time = 386.971663 + 0: The maximum resident set size (KB) = 1413768 Test 061 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2728,14 +2722,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.826340 - 0: The maximum resident set size (KB) = 1354136 + 0: The total amount of wall time = 397.347037 + 0: The maximum resident set size (KB) = 1366612 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2774,14 +2768,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.164498 - 0: The maximum resident set size (KB) = 1265440 + 0: The total amount of wall time = 300.770694 + 0: The maximum resident set size (KB) = 1267592 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_intel Checking test 064 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2828,14 +2822,14 @@ Checking test 064 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.054235 - 0: The maximum resident set size (KB) = 1366296 + 0: The total amount of wall time = 371.750675 + 0: The maximum resident set size (KB) = 1352224 Test 064 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_intel Checking test 065 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2882,14 +2876,14 @@ Checking test 065 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 362.971107 - 0: The maximum resident set size (KB) = 1176144 + 0: The total amount of wall time = 371.890608 + 0: The maximum resident set size (KB) = 1161112 Test 065 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2930,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.430150 - 0: The maximum resident set size (KB) = 1318532 + 0: The total amount of wall time = 413.060339 + 0: The maximum resident set size (KB) = 1286532 Test 066 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,42 +2984,42 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.499273 - 0: The maximum resident set size (KB) = 1252780 + 0: The total amount of wall time = 341.310973 + 0: The maximum resident set size (KB) = 1258972 Test 067 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 280.810275 - 0: The maximum resident set size (KB) = 1212712 + 0: The total amount of wall time = 296.341115 + 0: The maximum resident set size (KB) = 1216640 Test 068 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_intel Checking test 069 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 277.157162 - 0: The maximum resident set size (KB) = 1083016 + 0: The total amount of wall time = 295.186227 + 0: The maximum resident set size (KB) = 1096124 Test 069 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3072,14 +3066,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 376.696620 - 0: The maximum resident set size (KB) = 1384216 + 0: The total amount of wall time = 377.247643 + 0: The maximum resident set size (KB) = 1380180 Test 070 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3088,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 467.434737 - 0: The maximum resident set size (KB) = 956260 + 0: The total amount of wall time = 462.296670 + 0: The maximum resident set size (KB) = 948572 Test 071 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3110,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 450.886122 - 0: The maximum resident set size (KB) = 1126116 + 0: The total amount of wall time = 450.918102 + 0: The maximum resident set size (KB) = 1082952 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_gf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_gf_intel Checking test 073 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3170,14 +3164,14 @@ Checking test 073 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.177758 - 0: The maximum resident set size (KB) = 1414044 + 0: The total amount of wall time = 387.422041 + 0: The maximum resident set size (KB) = 1403696 Test 073 hrrr_gf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_c3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_c3_intel Checking test 074 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3224,14 +3218,14 @@ Checking test 074 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.533769 - 0: The maximum resident set size (KB) = 1416252 + 0: The total amount of wall time = 380.401063 + 0: The maximum resident set size (KB) = 1403868 Test 074 hrrr_c3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3242,14 +3236,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 305.649422 - 0: The maximum resident set size (KB) = 985564 + 0: The total amount of wall time = 298.426686 + 0: The maximum resident set size (KB) = 975048 Test 075 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3260,14 +3254,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 302.600326 - 0: The maximum resident set size (KB) = 971004 + 0: The total amount of wall time = 295.232394 + 0: The maximum resident set size (KB) = 954664 Test 076 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3278,26 +3272,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.781895 - 0: The maximum resident set size (KB) = 920132 + 0: The total amount of wall time = 162.680584 + 0: The maximum resident set size (KB) = 931336 Test 077 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 100.907478 - 0: The maximum resident set size (KB) = 860180 + 0: The total amount of wall time = 100.696779 + 0: The maximum resident set size (KB) = 840076 Test 078 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3344,14 +3338,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.318144 - 0: The maximum resident set size (KB) = 1617456 + 0: The total amount of wall time = 136.893188 + 0: The maximum resident set size (KB) = 1623616 Test 079 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3362,14 +3356,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 230.857891 - 0: The maximum resident set size (KB) = 1229024 + 0: The total amount of wall time = 231.629449 + 0: The maximum resident set size (KB) = 1227852 Test 080 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3396,336 +3390,336 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.890654 - 0: The maximum resident set size (KB) = 809244 + 0: The total amount of wall time = 123.239851 + 0: The maximum resident set size (KB) = 808504 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.520060 - 0: The maximum resident set size (KB) = 811136 + 0: The total amount of wall time = 145.904500 + 0: The maximum resident set size (KB) = 805256 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.304716 - 0: The maximum resident set size (KB) = 823304 + 0: The total amount of wall time = 140.236103 + 0: The maximum resident set size (KB) = 811256 Test 083 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.032884 - 0: The maximum resident set size (KB) = 812580 + 0: The total amount of wall time = 126.540014 + 0: The maximum resident set size (KB) = 815684 Test 084 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.459982 - 0: The maximum resident set size (KB) = 852900 + 0: The total amount of wall time = 194.615184 + 0: The maximum resident set size (KB) = 854488 Test 085 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.072410 - 0: The maximum resident set size (KB) = 860964 + 0: The total amount of wall time = 192.421184 + 0: The maximum resident set size (KB) = 855772 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.753490 - 0: The maximum resident set size (KB) = 823072 + 0: The total amount of wall time = 126.801249 + 0: The maximum resident set size (KB) = 825432 Test 087 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.305114 - 0: The maximum resident set size (KB) = 873312 + 0: The total amount of wall time = 130.875633 + 0: The maximum resident set size (KB) = 864560 Test 088 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.729129 - 0: The maximum resident set size (KB) = 1643672 + 0: The total amount of wall time = 148.836476 + 0: The maximum resident set size (KB) = 1631100 Test 089 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 839.955632 - 0: The maximum resident set size (KB) = 1255088 + 0: The total amount of wall time = 844.340352 + 0: The maximum resident set size (KB) = 1229192 Test 090 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.777944 - 0: The maximum resident set size (KB) = 1238592 + 0: The total amount of wall time = 240.976946 + 0: The maximum resident set size (KB) = 1230952 Test 091 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.758067 - 0: The maximum resident set size (KB) = 1184676 + 0: The total amount of wall time = 230.106075 + 0: The maximum resident set size (KB) = 1193300 Test 092 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.823510 - 0: The maximum resident set size (KB) = 1236916 + 0: The total amount of wall time = 239.828260 + 0: The maximum resident set size (KB) = 1216252 Test 093 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.392576 - 0: The maximum resident set size (KB) = 1307768 + 0: The total amount of wall time = 250.638133 + 0: The maximum resident set size (KB) = 1329300 Test 094 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.995532 - 0: The maximum resident set size (KB) = 1220960 + 0: The total amount of wall time = 243.575300 + 0: The maximum resident set size (KB) = 1218980 Test 095 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.449216 - 0: The maximum resident set size (KB) = 1211068 + 0: The total amount of wall time = 243.785283 + 0: The maximum resident set size (KB) = 1229800 Test 096 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.002772 - 0: The maximum resident set size (KB) = 1239040 + 0: The total amount of wall time = 237.349453 + 0: The maximum resident set size (KB) = 1227928 Test 097 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.478043 - 0: The maximum resident set size (KB) = 1206924 + 0: The total amount of wall time = 237.670314 + 0: The maximum resident set size (KB) = 1246412 Test 098 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.052489 - 0: The maximum resident set size (KB) = 1222160 + 0: The total amount of wall time = 227.769301 + 0: The maximum resident set size (KB) = 1212888 Test 099 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.410578 - 0: The maximum resident set size (KB) = 1225596 + 0: The total amount of wall time = 237.718413 + 0: The maximum resident set size (KB) = 1206880 Test 100 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 381.526670 - 0: The maximum resident set size (KB) = 1226136 + 0: The total amount of wall time = 385.162259 + 0: The maximum resident set size (KB) = 1220780 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.437833 - 0: The maximum resident set size (KB) = 1188740 + 0: The total amount of wall time = 232.363176 + 0: The maximum resident set size (KB) = 1199252 Test 102 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.631247 - 0: The maximum resident set size (KB) = 1239864 + 0: The total amount of wall time = 287.138258 + 0: The maximum resident set size (KB) = 1225992 Test 103 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.650810 - 0: The maximum resident set size (KB) = 1220072 + 0: The total amount of wall time = 252.039120 + 0: The maximum resident set size (KB) = 1231900 Test 104 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3736,14 +3730,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 187.420390 - 0: The maximum resident set size (KB) = 1256444 + 0: The total amount of wall time = 197.555303 + 0: The maximum resident set size (KB) = 1215428 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn32_phy32_intel Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3784,14 @@ Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.241064 - 0: The maximum resident set size (KB) = 1232436 + 0: The total amount of wall time = 330.480558 + 0: The maximum resident set size (KB) = 1222328 Test 106 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_dyn32_phy32_intel Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3844,14 +3838,14 @@ Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.431527 - 0: The maximum resident set size (KB) = 1099840 + 0: The total amount of wall time = 173.066017 + 0: The maximum resident set size (KB) = 1114456 Test 107 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_dyn32_phy32_intel Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3898,14 +3892,14 @@ Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.189629 - 0: The maximum resident set size (KB) = 1035184 + 0: The total amount of wall time = 176.175060 + 0: The maximum resident set size (KB) = 1016540 Test 108 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_dyn32_phy32_intel Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3952,14 +3946,14 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.712482 - 0: The maximum resident set size (KB) = 1330840 + 0: The total amount of wall time = 318.800703 + 0: The maximum resident set size (KB) = 1345164 Test 109 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_dyn32_phy32_intel Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4006,14 +4000,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.594591 - 0: The maximum resident set size (KB) = 1069768 + 0: The total amount of wall time = 161.800993 + 0: The maximum resident set size (KB) = 1064652 Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_dyn32_phy32_intel Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4060,14 +4054,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.866197 - 0: The maximum resident set size (KB) = 1095560 + 0: The total amount of wall time = 206.057648 + 0: The maximum resident set size (KB) = 1065508 Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_dyn32_phy32_intel Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4106,42 +4100,42 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.379135 - 0: The maximum resident set size (KB) = 1120404 + 0: The total amount of wall time = 238.381096 + 0: The maximum resident set size (KB) = 1142936 Test 112 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_dyn32_phy32_intel Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.505136 - 0: The maximum resident set size (KB) = 996252 + 0: The total amount of wall time = 87.863318 + 0: The maximum resident set size (KB) = 987224 Test 113 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.355068 - 0: The maximum resident set size (KB) = 912800 + 0: The total amount of wall time = 89.574399 + 0: The maximum resident set size (KB) = 905804 Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4157,40 +4151,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 95.773641 - 0: The maximum resident set size (KB) = 1349024 + 0: The total amount of wall time = 98.270030 + 0: The maximum resident set size (KB) = 1357064 Test 115 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 37.410482 - 0: The maximum resident set size (KB) = 1251504 + 0: The total amount of wall time = 37.340592 + 0: The maximum resident set size (KB) = 1253192 Test 116 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 55.596400 - 0: The maximum resident set size (KB) = 1218024 + 0: The total amount of wall time = 53.733692 + 0: The maximum resident set size (KB) = 1244892 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4237,123 +4231,123 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.255460 - 0: The maximum resident set size (KB) = 1269916 + 0: The total amount of wall time = 242.050713 + 0: The maximum resident set size (KB) = 1247264 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.826913 - 0: The maximum resident set size (KB) = 1079160 + 0: The total amount of wall time = 227.797779 + 0: The maximum resident set size (KB) = 1077216 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.575518 - 0: The maximum resident set size (KB) = 1080012 + 0: The total amount of wall time = 220.390370 + 0: The maximum resident set size (KB) = 1076520 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 695.016116 - 0: The maximum resident set size (KB) = 1372312 + 0: The total amount of wall time = 695.761522 + 0: The maximum resident set size (KB) = 1389448 Test 121 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_2threads_intel Checking test 122 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.450634 - 0: The maximum resident set size (KB) = 1287528 + 0: The total amount of wall time = 398.050046 + 0: The maximum resident set size (KB) = 1283096 Test 122 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_radar_tten_debug_intel Checking test 123 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 704.880501 - 0: The maximum resident set size (KB) = 1450520 + 0: The total amount of wall time = 696.214463 + 0: The maximum resident set size (KB) = 1463260 Test 123 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_debug_intel Checking test 124 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.203230 - 0: The maximum resident set size (KB) = 1193920 + 0: The total amount of wall time = 227.381613 + 0: The maximum resident set size (KB) = 1215668 Test 124 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_intel Checking test 125 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 204.737912 - 0: The maximum resident set size (KB) = 1471696 + 0: The total amount of wall time = 197.363595 + 0: The maximum resident set size (KB) = 1470268 Test 125 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_thompson_gfdlsf_intel Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 235.428595 - 0: The maximum resident set size (KB) = 1828108 + 0: The total amount of wall time = 242.617407 + 0: The maximum resident set size (KB) = 1819092 Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_ocn_intel Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4362,14 +4356,14 @@ Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 350.986300 - 0: The maximum resident set size (KB) = 1795396 + 0: The total amount of wall time = 346.912396 + 0: The maximum resident set size (KB) = 1791832 Test 127 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_wav_intel Checking test 128 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4378,14 +4372,14 @@ Checking test 128 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 850.731364 - 0: The maximum resident set size (KB) = 1820716 + 0: The total amount of wall time = 830.731982 + 0: The maximum resident set size (KB) = 1809736 Test 128 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_ocn_wav_intel Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4396,14 +4390,14 @@ Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 939.802058 - 0: The maximum resident set size (KB) = 1839552 + 0: The total amount of wall time = 872.519894 + 0: The maximum resident set size (KB) = 1855588 Test 129 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_1nest_atm_intel Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4425,14 +4419,14 @@ Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 278.956479 - 0: The maximum resident set size (KB) = 792676 + 0: The total amount of wall time = 279.535819 + 0: The maximum resident set size (KB) = 790464 Test 130 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_1nest_atm_qr_intel Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4448,14 @@ Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 308.328263 - 0: The maximum resident set size (KB) = 605016 + 0: The total amount of wall time = 299.599998 + 0: The maximum resident set size (KB) = 603956 Test 131 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_telescopic_2nests_atm_intel Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4470,14 +4464,14 @@ Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 326.139531 - 0: The maximum resident set size (KB) = 790152 + 0: The total amount of wall time = 312.012356 + 0: The maximum resident set size (KB) = 791212 Test 132 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_1nest_atm_intel Checking test 133 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4524,14 +4518,14 @@ Checking test 133 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 128.662487 - 0: The maximum resident set size (KB) = 467140 + 0: The total amount of wall time = 127.188984 + 0: The maximum resident set size (KB) = 465400 Test 133 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_1nest_atm_qr_intel Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,14 +4572,14 @@ Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 156.151242 - 0: The maximum resident set size (KB) = 435912 + 0: The total amount of wall time = 148.689858 + 0: The maximum resident set size (KB) = 438672 Test 134 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4667,14 +4661,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 364.519825 - 0: The maximum resident set size (KB) = 551936 + 0: The total amount of wall time = 353.925177 + 0: The maximum resident set size (KB) = 551928 Test 135 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_multiple_4nests_atm_qr_intel Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4756,14 +4750,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 438.927935 - 0: The maximum resident set size (KB) = 540212 + 0: The total amount of wall time = 421.546846 + 0: The maximum resident set size (KB) = 536472 Test 136 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4772,14 +4766,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 177.057528 - 0: The maximum resident set size (KB) = 801296 + 0: The total amount of wall time = 178.306187 + 0: The maximum resident set size (KB) = 794840 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4801,14 +4795,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.943229 - 0: The maximum resident set size (KB) = 803100 + 0: The total amount of wall time = 165.826106 + 0: The maximum resident set size (KB) = 798328 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4830,14 +4824,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 196.249831 - 0: The maximum resident set size (KB) = 617256 + 0: The total amount of wall time = 193.057682 + 0: The maximum resident set size (KB) = 618304 Test 139 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4846,42 +4840,42 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.951634 - 0: The maximum resident set size (KB) = 849420 + 0: The total amount of wall time = 222.420294 + 0: The maximum resident set size (KB) = 847388 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_storm_following_1nest_atm_intel Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 48.741003 - 0: The maximum resident set size (KB) = 473696 + 0: The total amount of wall time = 52.967978 + 0: The maximum resident set size (KB) = 470544 Test 141 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 611.305438 - 0: The maximum resident set size (KB) = 850408 + 0: The total amount of wall time = 614.538529 + 0: The maximum resident set size (KB) = 843412 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4892,14 +4886,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 981.327242 - 0: The maximum resident set size (KB) = 902116 + 0: The total amount of wall time = 1059.230032 + 0: The maximum resident set size (KB) = 894692 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4907,14 +4901,14 @@ Checking test 144 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 291.657765 - 0: The maximum resident set size (KB) = 1775384 + 0: The total amount of wall time = 288.111542 + 0: The maximum resident set size (KB) = 1777700 Test 144 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4922,131 +4916,131 @@ Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 293.716960 - 0: The maximum resident set size (KB) = 1753116 + 0: The total amount of wall time = 290.229390 + 0: The maximum resident set size (KB) = 1789264 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_datm_cdeps_intel Checking test 146 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 981.288294 - 0: The maximum resident set size (KB) = 1342580 + 0: The total amount of wall time = 978.149874 + 0: The maximum resident set size (KB) = 1340744 Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_intel Checking test 147 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 127.589577 - 0: The maximum resident set size (KB) = 1139024 + 0: The total amount of wall time = 122.744634 + 0: The maximum resident set size (KB) = 1124904 Test 147 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_restart_cfsr_intel Checking test 148 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 76.929527 - 0: The maximum resident set size (KB) = 1081580 + 0: The total amount of wall time = 76.545179 + 0: The maximum resident set size (KB) = 1077224 Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_gefs_intel Checking test 149 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.339660 - 0: The maximum resident set size (KB) = 998936 + 0: The total amount of wall time = 118.654903 + 0: The maximum resident set size (KB) = 1008576 Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_iau_gefs_intel Checking test 150 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.793947 - 0: The maximum resident set size (KB) = 1002788 + 0: The total amount of wall time = 120.376411 + 0: The maximum resident set size (KB) = 996044 Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_stochy_gefs_intel Checking test 151 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.382895 - 0: The maximum resident set size (KB) = 1004608 + 0: The total amount of wall time = 120.074364 + 0: The maximum resident set size (KB) = 993736 Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_ciceC_cfsr_intel Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.678992 - 0: The maximum resident set size (KB) = 1143548 + 0: The total amount of wall time = 121.589824 + 0: The maximum resident set size (KB) = 1128164 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_bulk_cfsr_intel Checking test 153 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.828032 - 0: The maximum resident set size (KB) = 1137564 + 0: The total amount of wall time = 122.445565 + 0: The maximum resident set size (KB) = 1118320 Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_bulk_gefs_intel Checking test 154 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.647830 - 0: The maximum resident set size (KB) = 1000784 + 0: The total amount of wall time = 117.117275 + 0: The maximum resident set size (KB) = 1010132 Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_mx025_cfsr_intel Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5055,14 +5049,14 @@ Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 325.596937 - 0: The maximum resident set size (KB) = 1124344 + 0: The total amount of wall time = 316.180463 + 0: The maximum resident set size (KB) = 1140892 Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_mx025_gefs_intel Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5071,77 +5065,77 @@ Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 316.927423 - 0: The maximum resident set size (KB) = 1142644 + 0: The total amount of wall time = 309.850049 + 0: The maximum resident set size (KB) = 1132912 Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_multiple_files_cfsr_intel Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.287342 - 0: The maximum resident set size (KB) = 1143940 + 0: The total amount of wall time = 124.462389 + 0: The maximum resident set size (KB) = 1120408 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_3072x1536_cfsr_intel Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 177.214517 - 0: The maximum resident set size (KB) = 2363288 + 0: The total amount of wall time = 175.633958 + 0: The maximum resident set size (KB) = 2422296 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_gfs_intel Checking test 159 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 184.570499 - 0: The maximum resident set size (KB) = 2368052 + 0: The total amount of wall time = 177.962355 + 0: The maximum resident set size (KB) = 2360600 Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_debug_cfsr_intel Checking test 160 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 288.211657 - 0: The maximum resident set size (KB) = 1068672 + 0: The total amount of wall time = 293.471446 + 0: The maximum resident set size (KB) = 1063260 Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_faster_intel Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.560624 - 0: The maximum resident set size (KB) = 1123592 + 0: The total amount of wall time = 123.025690 + 0: The maximum resident set size (KB) = 1134932 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_lnd_gswp3_intel Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5150,14 +5144,14 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 8.667967 - 0: The maximum resident set size (KB) = 336688 + 0: The total amount of wall time = 7.821460 + 0: The maximum resident set size (KB) = 332012 Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_lnd_gswp3_rst_intel Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5166,14 +5160,14 @@ Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.242803 - 0: The maximum resident set size (KB) = 336432 + 0: The total amount of wall time = 9.396787 + 0: The maximum resident set size (KB) = 334904 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_atmlnd_sbs_intel Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5258,14 +5252,14 @@ Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 186.978157 - 0: The maximum resident set size (KB) = 1701776 + 0: The total amount of wall time = 182.560903 + 0: The maximum resident set size (KB) = 1683896 Test 164 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5308,14 +5302,14 @@ Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 86.882545 - 0: The maximum resident set size (KB) = 1686856 + 0: The total amount of wall time = 82.878739 + 0: The maximum resident set size (KB) = 1677776 Test 165 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_atmwav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5359,14 +5353,14 @@ Checking test 166 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.695239 - 0: The maximum resident set size (KB) = 694776 + 0: The total amount of wall time = 75.703635 + 0: The maximum resident set size (KB) = 689868 Test 166 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5410,14 +5404,14 @@ Checking test 167 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.551694 - 0: The maximum resident set size (KB) = 1758384 + 0: The total amount of wall time = 203.189030 + 0: The maximum resident set size (KB) = 1772764 Test 167 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5455,14 @@ Checking test 168 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.241783 - 0: The maximum resident set size (KB) = 1795156 + 0: The total amount of wall time = 250.054011 + 0: The maximum resident set size (KB) = 1798124 Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5512,14 +5506,14 @@ Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.706298 - 0: The maximum resident set size (KB) = 1790028 + 0: The total amount of wall time = 253.632203 + 0: The maximum resident set size (KB) = 1802240 Test 169 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_intel Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5535,14 +5529,14 @@ Checking test 170 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 563.391249 - 0: The maximum resident set size (KB) = 5511200 + 0: The total amount of wall time = 539.397513 + 0: The maximum resident set size (KB) = 5462340 Test 170 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_debug_intel Checking test 171 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5556,14 +5550,14 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1005.532146 - 0: The maximum resident set size (KB) = 4986436 + 0: The total amount of wall time = 976.874370 + 0: The maximum resident set size (KB) = 4995148 Test 171 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_faster_intel Checking test 172 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5579,14 +5573,14 @@ Checking test 172 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 466.999370 - 0: The maximum resident set size (KB) = 5467936 + 0: The total amount of wall time = 463.548761 + 0: The maximum resident set size (KB) = 5498008 Test 172 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_c48_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c48_gnu Checking test 173 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5625,14 +5619,14 @@ Checking test 173 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 574.262874 -The maximum resident set size (KB) = 758388 +The total amount of wall time = 572.837711 +The maximum resident set size (KB) = 756736 Test 173 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_gnu Checking test 174 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5643,14 +5637,14 @@ Checking test 174 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 128.271233 -The maximum resident set size (KB) = 563396 +The total amount of wall time = 124.696620 +The maximum resident set size (KB) = 564276 Test 174 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_gnu Checking test 175 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5661,14 +5655,14 @@ Checking test 175 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 211.051904 -The maximum resident set size (KB) = 568664 +The total amount of wall time = 208.095906 +The maximum resident set size (KB) = 570716 Test 175 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_gnu Checking test 176 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5715,14 +5709,14 @@ Checking test 176 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.355538 -The maximum resident set size (KB) = 1318812 +The total amount of wall time = 217.965158 +The maximum resident set size (KB) = 1317456 Test 176 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_flake_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_flake_gnu Checking test 177 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5733,14 +5727,14 @@ Checking test 177 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 252.636793 -The maximum resident set size (KB) = 612280 +The total amount of wall time = 250.536026 +The maximum resident set size (KB) = 611088 Test 177 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_gnu Checking test 178 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5787,14 +5781,14 @@ Checking test 178 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 460.487268 -The maximum resident set size (KB) = 912224 +The total amount of wall time = 443.773286 +The maximum resident set size (KB) = 915640 Test 178 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_decomp_gnu Checking test 179 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5841,14 +5835,14 @@ Checking test 179 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 468.681073 -The maximum resident set size (KB) = 912716 +The total amount of wall time = 460.154788 +The maximum resident set size (KB) = 914684 Test 179 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_gnu Checking test 180 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5895,14 +5889,14 @@ Checking test 180 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 424.438825 -The maximum resident set size (KB) = 982108 +The total amount of wall time = 412.280620 +The maximum resident set size (KB) = 983724 Test 180 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_gnu Checking test 181 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5941,14 +5935,14 @@ Checking test 181 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.268646 -The maximum resident set size (KB) = 783728 +The total amount of wall time = 229.730088 +The maximum resident set size (KB) = 782452 Test 181 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_gnu Checking test 182 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5995,14 +5989,14 @@ Checking test 182 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 469.043410 -The maximum resident set size (KB) = 911940 +The total amount of wall time = 450.730921 +The maximum resident set size (KB) = 913296 Test 182 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_decomp_gnu Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6049,14 +6043,14 @@ Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 471.426248 -The maximum resident set size (KB) = 917336 +The total amount of wall time = 458.869422 +The maximum resident set size (KB) = 915268 Test 183 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_sfcdiff_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_restart_gnu Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6095,14 +6089,14 @@ Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 337.755690 -The maximum resident set size (KB) = 787568 +The total amount of wall time = 333.433452 +The maximum resident set size (KB) = 789168 Test 184 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_gnu Checking test 185 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6149,14 +6143,14 @@ Checking test 185 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 452.179186 -The maximum resident set size (KB) = 909696 +The total amount of wall time = 439.642482 +The maximum resident set size (KB) = 911296 Test 185 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_gnu Checking test 186 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6203,14 +6197,14 @@ Checking test 186 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 452.744940 -The maximum resident set size (KB) = 918052 +The total amount of wall time = 443.340100 +The maximum resident set size (KB) = 921092 Test 186 hrrr_control_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_gnu Checking test 187 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6257,14 +6251,14 @@ Checking test 187 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.198821 -The maximum resident set size (KB) = 974184 +The total amount of wall time = 396.844487 +The maximum resident set size (KB) = 966584 Test 187 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_gnu Checking test 188 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6311,42 +6305,42 @@ Checking test 188 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 451.365078 -The maximum resident set size (KB) = 910724 +The total amount of wall time = 438.130433 +The maximum resident set size (KB) = 908380 Test 188 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_gnu Checking test 189 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 327.779528 -The maximum resident set size (KB) = 738680 +The total amount of wall time = 328.263925 +The maximum resident set size (KB) = 740120 Test 189 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_gnu Checking test 190 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 330.841998 -The maximum resident set size (KB) = 647104 +The total amount of wall time = 330.690385 +The maximum resident set size (KB) = 645984 Test 190 hrrr_control_restart_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_gnu Checking test 191 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6393,14 +6387,14 @@ Checking test 191 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 459.855853 -The maximum resident set size (KB) = 909504 +The total amount of wall time = 445.671313 +The maximum resident set size (KB) = 911544 Test 191 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_gf_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_gf_gnu Checking test 192 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6447,196 +6441,196 @@ Checking test 192 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 469.608626 -The maximum resident set size (KB) = 910308 +The total amount of wall time = 452.364111 +The maximum resident set size (KB) = 913324 Test 192 hrrr_gf_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_diag_debug_gnu Checking test 193 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 63.640569 -The maximum resident set size (KB) = 609360 +The total amount of wall time = 64.345725 +The maximum resident set size (KB) = 609556 Test 193 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_debug_gnu Checking test 194 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 370.218562 -The maximum resident set size (KB) = 858264 +The total amount of wall time = 360.166971 +The maximum resident set size (KB) = 860912 Test 194 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_gnu Checking test 195 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.081018 -The maximum resident set size (KB) = 926928 +The total amount of wall time = 107.584125 +The maximum resident set size (KB) = 929076 Test 195 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_gnu Checking test 196 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 105.375655 -The maximum resident set size (KB) = 922452 +The total amount of wall time = 104.433207 +The maximum resident set size (KB) = 922512 Test 196 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_diag_debug_gnu Checking test 197 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 120.317428 -The maximum resident set size (KB) = 1007576 +The total amount of wall time = 115.836744 +The maximum resident set size (KB) = 1006356 Test 197 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.978859 -The maximum resident set size (KB) = 928352 +The total amount of wall time = 174.504436 +The maximum resident set size (KB) = 926448 Test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_progcld_thompson_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_progcld_thompson_debug_gnu Checking test 199 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 109.743783 -The maximum resident set size (KB) = 928188 +The total amount of wall time = 107.142764 +The maximum resident set size (KB) = 927708 Test 199 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rrfs_v1beta_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_debug_gnu Checking test 200 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 121.074773 -The maximum resident set size (KB) = 921268 +The total amount of wall time = 105.758240 +The maximum resident set size (KB) = 921900 Test 200 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_ras_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_debug_gnu Checking test 201 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 65.866326 -The maximum resident set size (KB) = 558308 +The total amount of wall time = 61.632145 +The maximum resident set size (KB) = 559476 Test 201 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_stochy_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_debug_gnu Checking test 202 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 82.023100 -The maximum resident set size (KB) = 554216 +The total amount of wall time = 67.654235 +The maximum resident set size (KB) = 556812 Test 202 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/control_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_debug_p8_gnu Checking test 203 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 75.889093 -The maximum resident set size (KB) = 1311320 +The total amount of wall time = 68.486156 +The maximum resident set size (KB) = 1311516 Test 203 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_flake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_flake_debug_gnu Checking test 204 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.945884 -The maximum resident set size (KB) = 924860 +The total amount of wall time = 106.872691 +The maximum resident set size (KB) = 927364 Test 204 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_clm_lake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_clm_lake_debug_gnu Checking test 205 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 124.338453 -The maximum resident set size (KB) = 927928 +The total amount of wall time = 121.153363 +The maximum resident set size (KB) = 928088 Test 205 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn32_phy32_gnu Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6683,14 +6677,14 @@ Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.833128 -The maximum resident set size (KB) = 771356 +The total amount of wall time = 427.773994 +The maximum resident set size (KB) = 772076 Test 206 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_dyn32_phy32_gnu Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6737,14 +6731,14 @@ Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.643326 -The maximum resident set size (KB) = 770080 +The total amount of wall time = 222.383721 +The maximum resident set size (KB) = 769684 Test 207 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_dyn32_phy32_gnu Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6791,14 +6785,14 @@ Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 228.077049 -The maximum resident set size (KB) = 779900 +The total amount of wall time = 224.142034 +The maximum resident set size (KB) = 780304 Test 208 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_dyn32_phy32_gnu Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6845,14 +6839,14 @@ Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.819856 -The maximum resident set size (KB) = 823308 +The total amount of wall time = 394.643831 +The maximum resident set size (KB) = 820768 Test 209 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_dyn32_phy32_gnu Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6899,14 +6893,14 @@ Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.320916 -The maximum resident set size (KB) = 807592 +The total amount of wall time = 201.928281 +The maximum resident set size (KB) = 807528 Test 210 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_dyn32_phy32_gnu Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6953,14 +6947,14 @@ Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.825870 -The maximum resident set size (KB) = 770992 +The total amount of wall time = 225.787746 +The maximum resident set size (KB) = 769868 Test 211 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_dyn32_phy32_gnu Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6999,42 +6993,42 @@ Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.557836 -The maximum resident set size (KB) = 679900 +The total amount of wall time = 317.388729 +The maximum resident set size (KB) = 689524 Test 212 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_dyn32_phy32_gnu Checking test 213 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 112.309162 -The maximum resident set size (KB) = 647832 +The total amount of wall time = 111.459266 +The maximum resident set size (KB) = 647244 Test 213 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 120.203635 -The maximum resident set size (KB) = 612152 +The total amount of wall time = 114.065128 +The maximum resident set size (KB) = 615028 Test 214 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_control_gnu Checking test 215 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7050,40 +7044,40 @@ Checking test 215 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 140.537553 -The maximum resident set size (KB) = 985712 +The total amount of wall time = 144.168991 +The maximum resident set size (KB) = 978404 Test 215 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_2threads_gnu Checking test 216 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 57.902838 -The maximum resident set size (KB) = 994776 +The total amount of wall time = 56.441909 +The maximum resident set size (KB) = 997204 Test 216 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_restart_mismatch_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_restart_mismatch_gnu Checking test 217 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 81.351179 -The maximum resident set size (KB) = 643100 +The total amount of wall time = 83.627346 +The maximum resident set size (KB) = 643848 Test 217 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_gnu Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7130,98 +7124,98 @@ Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.967102 -The maximum resident set size (KB) = 794228 +The total amount of wall time = 258.823863 +The maximum resident set size (KB) = 795624 Test 218 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_dyn32_phy32_gnu Checking test 219 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 104.241774 -The maximum resident set size (KB) = 781492 +The total amount of wall time = 103.094070 +The maximum resident set size (KB) = 782324 Test 219 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_dyn32_phy32_gnu Checking test 220 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 102.948256 -The maximum resident set size (KB) = 780716 +The total amount of wall time = 103.281427 +The maximum resident set size (KB) = 785660 Test 220 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_gnu Checking test 221 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 316.067158 -The maximum resident set size (KB) = 994284 +The total amount of wall time = 319.510263 +The maximum resident set size (KB) = 1000636 Test 221 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_debug_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_2threads_gnu Checking test 222 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.601408 -The maximum resident set size (KB) = 1007364 +The total amount of wall time = 188.198532 +The maximum resident set size (KB) = 1008712 Test 222 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/conus13km_radar_tten_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_radar_tten_debug_gnu Checking test 223 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 317.731140 -The maximum resident set size (KB) = 1063012 +The total amount of wall time = 315.728183 +The maximum resident set size (KB) = 1063848 Test 223 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/rap_control_dyn64_phy32_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_debug_gnu Checking test 224 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.340161 -The maximum resident set size (KB) = 801912 +The total amount of wall time = 108.241412 +The maximum resident set size (KB) = 803652 Test 224 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_gnu Checking test 225 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7286,14 +7280,14 @@ Checking test 225 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 416.517715 -The maximum resident set size (KB) = 1595516 +The total amount of wall time = 413.082646 +The maximum resident set size (KB) = 1595540 Test 225 cpld_control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_nowave_noaero_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_nowave_noaero_p8_gnu Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7355,14 +7349,14 @@ Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 285.567893 -The maximum resident set size (KB) = 1425212 +The total amount of wall time = 280.673336 +The maximum resident set size (KB) = 1425476 Test 226 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_p8_gnu Checking test 227 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7415,14 +7409,14 @@ Checking test 227 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 216.041346 -The maximum resident set size (KB) = 1600908 +The total amount of wall time = 215.095069 +The maximum resident set size (KB) = 1602380 Test 227 cpld_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_control_pdlib_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_pdlib_p8_gnu Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7486,14 +7480,14 @@ Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 984.904734 -The maximum resident set size (KB) = 1396552 +The total amount of wall time = 985.042648 +The maximum resident set size (KB) = 1403240 Test 228 cpld_control_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/cpld_debug_pdlib_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_pdlib_p8_gnu Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7545,25 +7539,38 @@ Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 533.650618 -The maximum resident set size (KB) = 1410032 +The total amount of wall time = 533.295246 +The maximum resident set size (KB) = 1407364 Test 229 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1305315/datm_cdeps_control_cfsr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_gnu Checking test 230 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.747779 -The maximum resident set size (KB) = 750536 +The total amount of wall time = 138.737687 +The maximum resident set size (KB) = 751808 Test 230 datm_cdeps_control_cfsr_gnu PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1505354/regional_netcdf_parallel_intel +Checking test 001 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + + 0: The total amount of wall time = 276.274290 + 0: The maximum resident set size (KB) = 1212440 + +Test 001 regional_netcdf_parallel_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Sep 19 21:08:06 CDT 2023 -Elapsed time: 01h:17m:14s. Have a nice day! +Thu Sep 21 10:49:06 CDT 2023 +Elapsed time: 00h:15m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 40b8a86a21..6be1f7bf48 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,11 +1,11 @@ -Tue Sep 19 18:43:50 UTC 2023 +Thu Sep 21 15:17:05 UTC 2023 Start Regression test -Testing UFSWM Hash: 80a29951ede3210bd82b51be1230b78219a1fecf +Testing UFSWM Hash: 8d6689858eb46cf48e351d8f6190cfbd174a46fb Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,39 +15,39 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 304 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1887 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1729 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1798 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1786 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1748 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1783 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1851 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 233 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2515 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1829 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5473 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2014 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 409 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1978 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1786 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1731 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1769 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 297 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 123 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1789 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2476 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1753 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1794 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 318 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1940 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2036 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5524 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2031 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -75,51 +75,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 417.685070 - 0: The maximum resident set size (KB) = 1758084 + 0: The total amount of wall time = 425.300276 + 0: The maximum resident set size (KB) = 1756832 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -146,51 +146,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.510991 - 0: The maximum resident set size (KB) = 1616132 + 0: The total amount of wall time = 284.044149 + 0: The maximum resident set size (KB) = 1623064 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -218,51 +218,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.444021 - 0: The maximum resident set size (KB) = 1798544 + 0: The total amount of wall time = 466.404412 + 0: The maximum resident set size (KB) = 1795080 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -278,51 +278,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.206446 - 0: The maximum resident set size (KB) = 1697476 + 0: The total amount of wall time = 265.045143 + 0: The maximum resident set size (KB) = 1693048 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -350,7 +350,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -381,20 +381,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.731966 - 0: The maximum resident set size (KB) = 1813232 + 0: The total amount of wall time = 467.837487 + 0: The maximum resident set size (KB) = 1810188 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -410,7 +410,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -441,20 +441,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.842380 - 0: The maximum resident set size (KB) = 1530252 + 0: The total amount of wall time = 278.126928 + 0: The maximum resident set size (KB) = 1523116 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -470,51 +470,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.038948 - 0: The maximum resident set size (KB) = 2167388 + 0: The total amount of wall time = 442.123883 + 0: The maximum resident set size (KB) = 2196748 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -530,51 +530,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.031889 - 0: The maximum resident set size (KB) = 1795720 + 0: The total amount of wall time = 470.592832 + 0: The maximum resident set size (KB) = 1790628 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -590,51 +590,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.408496 - 0: The maximum resident set size (KB) = 1765160 + 0: The total amount of wall time = 389.186250 + 0: The maximum resident set size (KB) = 1750256 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -662,51 +662,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.887029 - 0: The maximum resident set size (KB) = 1786872 + 0: The total amount of wall time = 463.455804 + 0: The maximum resident set size (KB) = 1798308 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -733,51 +733,51 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.654585 - 0: The maximum resident set size (KB) = 1637456 + 0: The total amount of wall time = 343.766138 + 0: The maximum resident set size (KB) = 1633904 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -804,49 +804,49 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 350.121523 - 0: The maximum resident set size (KB) = 1688184 + 0: The total amount of wall time = 348.809206 + 0: The maximum resident set size (KB) = 1684588 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -862,51 +862,51 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 677.881349 - 0: The maximum resident set size (KB) = 1815424 + 0: The total amount of wall time = 690.858802 + 0: The maximum resident set size (KB) = 1812780 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -921,51 +921,51 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 461.532716 - 0: The maximum resident set size (KB) = 1657628 + 0: The total amount of wall time = 476.600814 + 0: The maximum resident set size (KB) = 1655084 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -992,49 +992,49 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 346.951399 - 0: The maximum resident set size (KB) = 1677764 + 0: The total amount of wall time = 346.474623 + 0: The maximum resident set size (KB) = 1677352 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1049,49 +1049,49 @@ Checking test 016 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 804.848797 - 0: The maximum resident set size (KB) = 2792992 + 0: The total amount of wall time = 802.177598 + 0: The maximum resident set size (KB) = 2783476 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1119,51 +1119,51 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 486.921398 - 0: The maximum resident set size (KB) = 1797340 + 0: The total amount of wall time = 441.290443 + 0: The maximum resident set size (KB) = 1798332 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.766353 - 0: The maximum resident set size (KB) = 637280 + 0: The total amount of wall time = 250.750951 + 0: The maximum resident set size (KB) = 633000 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 183.543348 - 0: The maximum resident set size (KB) = 579176 + 0: The total amount of wall time = 184.641947 + 0: The maximum resident set size (KB) = 586180 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.796647 - 0: The maximum resident set size (KB) = 584180 + 0: The total amount of wall time = 194.713211 + 0: The maximum resident set size (KB) = 585224 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,16 +1248,16 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.441671 - 0: The maximum resident set size (KB) = 580644 + 0: The total amount of wall time = 190.007496 + 0: The maximum resident set size (KB) = 582604 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1266,60 +1266,60 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.731143 - 0: The maximum resident set size (KB) = 580288 + 0: The total amount of wall time = 190.116097 + 0: The maximum resident set size (KB) = 580416 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0: The total amount of wall time = 606.809280 -0: The maximum resident set size (KB) = 804556 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 595.230477 +0: The maximum resident set size (KB) = 804884 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 748.440668 - 0: The maximum resident set size (KB) = 705184 + 0: The total amount of wall time = 767.975210 + 0: The maximum resident set size (KB) = 705372 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 943.840369 - 0: The maximum resident set size (KB) = 1164676 + 0: The total amount of wall time = 938.159905 + 0: The maximum resident set size (KB) = 1188692 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1366,46 +1366,46 @@ Checking test 026 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 808.394158 - 0: The maximum resident set size (KB) = 1297392 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 859.609361 + 0: The maximum resident set size (KB) = 1291760 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.805292 - 0: The maximum resident set size (KB) = 592748 + 0: The total amount of wall time = 123.967202 + 0: The maximum resident set size (KB) = 587704 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.022008 - 0: The maximum resident set size (KB) = 464400 + 0: The total amount of wall time = 66.970489 + 0: The maximum resident set size (KB) = 457796 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.547913 - 0: The maximum resident set size (KB) = 585448 + 0: The total amount of wall time = 114.256428 + 0: The maximum resident set size (KB) = 589708 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.687120 - 0: The maximum resident set size (KB) = 582568 + 0: The total amount of wall time = 190.120528 + 0: The maximum resident set size (KB) = 584980 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.419105 - 0: The maximum resident set size (KB) = 584616 + 0: The total amount of wall time = 187.685744 + 0: The maximum resident set size (KB) = 585160 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1514,92 +1514,92 @@ Checking test 032 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 227.288996 - 0: The maximum resident set size (KB) = 1560572 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 229.358144 + 0: The maximum resident set size (KB) = 1544444 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 121.395984 - 0: The maximum resident set size (KB) = 834596 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 119.588602 + 0: The maximum resident set size (KB) = 836548 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1614,7 +1614,7 @@ Checking test 034 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1646,21 +1646,21 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 229.504747 - 0: The maximum resident set size (KB) = 1554324 + 0: The total amount of wall time = 230.555131 + 0: The maximum resident set size (KB) = 1555584 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 121.540277 - 0: The maximum resident set size (KB) = 800496 + 0: The total amount of wall time = 122.550184 + 0: The maximum resident set size (KB) = 792684 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1710,46 +1710,46 @@ Checking test 036 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 239.792408 - 0: The maximum resident set size (KB) = 1534976 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 239.254874 + 0: The maximum resident set size (KB) = 1537364 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1760,46 +1760,46 @@ Checking test 037 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 213.327639 - 0: The maximum resident set size (KB) = 1638044 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 232.438051 + 0: The maximum resident set size (KB) = 1636944 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 426.338849 - 0: The maximum resident set size (KB) = 1549484 + 0: The total amount of wall time = 439.223639 + 0: The maximum resident set size (KB) = 1547176 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1840,46 +1840,46 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 314.931616 - 0: The maximum resident set size (KB) = 1614084 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 306.601995 + 0: The maximum resident set size (KB) = 1606784 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1894,46 +1894,46 @@ Checking test 040 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 239.466484 - 0: The maximum resident set size (KB) = 1563348 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 233.376257 + 0: The maximum resident set size (KB) = 1550292 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1948,46 +1948,46 @@ Checking test 041 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 269.312797 - 0: The maximum resident set size (KB) = 1564720 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 267.280047 + 0: The maximum resident set size (KB) = 1563016 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 393.743366 - 0: The maximum resident set size (KB) = 999736 + 0: The total amount of wall time = 398.752602 + 0: The maximum resident set size (KB) = 997764 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 231.862766 - 0: The maximum resident set size (KB) = 990140 + 0: The total amount of wall time = 214.308910 + 0: The maximum resident set size (KB) = 989940 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 398.179514 - 0: The maximum resident set size (KB) = 997700 + 0: The total amount of wall time = 393.683356 + 0: The maximum resident set size (KB) = 997228 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 246.866335 - 0: The maximum resident set size (KB) = 987696 + 0: The total amount of wall time = 221.724605 + 0: The maximum resident set size (KB) = 973744 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 424.235462 - 0: The maximum resident set size (KB) = 986420 + 0: The total amount of wall time = 420.295617 + 0: The maximum resident set size (KB) = 991164 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 245.659695 - 0: The maximum resident set size (KB) = 972864 + 0: The total amount of wall time = 246.341930 + 0: The maximum resident set size (KB) = 978376 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 394.908342 - 0: The maximum resident set size (KB) = 996048 + 0: The total amount of wall time = 389.050130 + 0: The maximum resident set size (KB) = 990960 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 399.933645 - 0: The maximum resident set size (KB) = 994052 + 0: The total amount of wall time = 398.954101 + 0: The maximum resident set size (KB) = 995920 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2134,46 +2134,46 @@ Checking test 050 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 607.943774 - 0: The maximum resident set size (KB) = 1082112 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 597.043625 + 0: The maximum resident set size (KB) = 1081552 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 328.561612 - 0: The maximum resident set size (KB) = 1109552 + 0: The total amount of wall time = 320.374522 + 0: The maximum resident set size (KB) = 1120828 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2206,46 +2206,46 @@ Checking test 052 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 657.716204 - 0: The maximum resident set size (KB) = 1031000 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 626.322694 + 0: The maximum resident set size (KB) = 1032324 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,92 +2260,92 @@ Checking test 053 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 593.187293 - 0: The maximum resident set size (KB) = 1148800 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 557.655538 + 0: The maximum resident set size (KB) = 1150792 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 323.750530 - 0: The maximum resident set size (KB) = 1013648 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 294.661517 + 0: The maximum resident set size (KB) = 1001868 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2360,46 +2360,46 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 618.385381 - 0: The maximum resident set size (KB) = 1073296 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 622.602298 + 0: The maximum resident set size (KB) = 1074972 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,201 +2414,147 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 661.885894 - 0: The maximum resident set size (KB) = 1026636 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 667.088440 + 0: The maximum resident set size (KB) = 1039004 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 466.079644 - 0: The maximum resident set size (KB) = 1017168 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 440.198073 + 0: The maximum resident set size (KB) = 1026988 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 604.345624 - 0: The maximum resident set size (KB) = 1025532 - -Test 058 hrrr_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_qr_intel -Checking test 059 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 598.684286 - 0: The maximum resident set size (KB) = 969564 + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 561.193913 + 0: The maximum resident set size (KB) = 1024248 -Test 059 hrrr_control_qr_intel PASS +Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_decomp_intel -Checking test 060 hrrr_control_decomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_qr_intel +Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2622,7 +2568,7 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2654,14 +2600,68 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 619.706258 - 0: The maximum resident set size (KB) = 984828 + 0: The total amount of wall time = 597.087781 + 0: The maximum resident set size (KB) = 963288 + +Test 059 hrrr_control_qr_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_decomp_intel +Checking test 060 hrrr_control_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 635.557926 + 0: The maximum resident set size (KB) = 979316 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,74 +2676,74 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 555.644305 - 0: The maximum resident set size (KB) = 1019804 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 577.038996 + 0: The maximum resident set size (KB) = 1034132 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 454.749654 - 0: The maximum resident set size (KB) = 964524 + 0: The total amount of wall time = 416.427654 + 0: The maximum resident set size (KB) = 965756 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 460.216194 - 0: The maximum resident set size (KB) = 874368 + 0: The total amount of wall time = 424.811410 + 0: The maximum resident set size (KB) = 879068 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2758,46 +2758,46 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 615.336417 - 0: The maximum resident set size (KB) = 1036768 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 625.188797 + 0: The maximum resident set size (KB) = 1036456 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.915766 - 0: The maximum resident set size (KB) = 679328 + 0: The total amount of wall time = 748.929884 + 0: The maximum resident set size (KB) = 670108 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 736.042622 - 0: The maximum resident set size (KB) = 747492 + 0: The total amount of wall time = 733.242488 + 0: The maximum resident set size (KB) = 741488 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_gf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2856,46 +2856,46 @@ Checking test 067 hrrr_gf_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 650.598064 - 0: The maximum resident set size (KB) = 1069712 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 649.023077 + 0: The maximum resident set size (KB) = 1067300 Test 067 hrrr_gf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_c3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2910,46 +2910,46 @@ Checking test 068 hrrr_c3_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 651.117633 - 0: The maximum resident set size (KB) = 1068940 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 642.320441 + 0: The maximum resident set size (KB) = 1072540 Test 068 hrrr_c3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2960,14 +2960,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.018261 - 0: The maximum resident set size (KB) = 678480 + 0: The total amount of wall time = 455.463810 + 0: The maximum resident set size (KB) = 693668 Test 069 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.064557 - 0: The maximum resident set size (KB) = 693236 + 0: The total amount of wall time = 449.646521 + 0: The maximum resident set size (KB) = 682816 Test 070 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,26 +2996,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.094583 - 0: The maximum resident set size (KB) = 677124 + 0: The total amount of wall time = 253.868059 + 0: The maximum resident set size (KB) = 671520 Test 071 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 152.474895 - 0: The maximum resident set size (KB) = 542324 + 0: The total amount of wall time = 149.002333 + 0: The maximum resident set size (KB) = 543432 Test 072 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3030,46 +3030,46 @@ Checking test 073 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 221.288618 - 0: The maximum resident set size (KB) = 1543064 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 215.020394 + 0: The maximum resident set size (KB) = 1546600 Test 073 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3080,14 +3080,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 365.520304 - 0: The maximum resident set size (KB) = 1000216 + 0: The total amount of wall time = 368.410765 + 0: The maximum resident set size (KB) = 996412 Test 074 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3114,348 +3114,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 195.886756 - 0: The maximum resident set size (KB) = 734940 + 0: The total amount of wall time = 193.555746 + 0: The maximum resident set size (KB) = 745488 Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.564745 - 0: The maximum resident set size (KB) = 739076 + 0: The total amount of wall time = 185.429124 + 0: The maximum resident set size (KB) = 741536 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.033762 - 0: The maximum resident set size (KB) = 743800 + 0: The total amount of wall time = 219.725326 + 0: The maximum resident set size (KB) = 743156 Test 077 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.591654 - 0: The maximum resident set size (KB) = 741500 + 0: The total amount of wall time = 188.079987 + 0: The maximum resident set size (KB) = 748736 Test 078 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.613742 - 0: The maximum resident set size (KB) = 789156 + 0: The total amount of wall time = 305.274614 + 0: The maximum resident set size (KB) = 788188 Test 079 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.879048 - 0: The maximum resident set size (KB) = 786596 + 0: The total amount of wall time = 294.941724 + 0: The maximum resident set size (KB) = 794496 Test 080 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.588302 - 0: The maximum resident set size (KB) = 752096 + 0: The total amount of wall time = 196.504170 + 0: The maximum resident set size (KB) = 756224 Test 081 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.460293 - 0: The maximum resident set size (KB) = 788716 + 0: The total amount of wall time = 194.163021 + 0: The maximum resident set size (KB) = 793240 Test 082 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.405059 - 0: The maximum resident set size (KB) = 1556012 + 0: The total amount of wall time = 219.398262 + 0: The maximum resident set size (KB) = 1564780 Test 083 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1279.852957 - 0: The maximum resident set size (KB) = 1005592 + 0: The total amount of wall time = 1279.977854 + 0: The maximum resident set size (KB) = 1025676 Test 084 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.512690 - 0: The maximum resident set size (KB) = 1129992 + 0: The total amount of wall time = 350.860908 + 0: The maximum resident set size (KB) = 1136312 Test 085 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.505841 - 0: The maximum resident set size (KB) = 1115516 + 0: The total amount of wall time = 339.515427 + 0: The maximum resident set size (KB) = 1113744 Test 086 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.261351 - 0: The maximum resident set size (KB) = 1124060 + 0: The total amount of wall time = 348.578038 + 0: The maximum resident set size (KB) = 1131064 Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.406810 - 0: The maximum resident set size (KB) = 1197548 + 0: The total amount of wall time = 364.149576 + 0: The maximum resident set size (KB) = 1200820 Test 088 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.363906 - 0: The maximum resident set size (KB) = 1124156 + 0: The total amount of wall time = 358.609895 + 0: The maximum resident set size (KB) = 1130028 Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.386154 - 0: The maximum resident set size (KB) = 1123648 + 0: The total amount of wall time = 360.217619 + 0: The maximum resident set size (KB) = 1118632 Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.814666 - 0: The maximum resident set size (KB) = 1135852 + 0: The total amount of wall time = 354.821938 + 0: The maximum resident set size (KB) = 1137104 Test 091 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.783098 - 0: The maximum resident set size (KB) = 1133008 + 0: The total amount of wall time = 350.235041 + 0: The maximum resident set size (KB) = 1127132 Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.490148 - 0: The maximum resident set size (KB) = 1125708 + 0: The total amount of wall time = 346.019610 + 0: The maximum resident set size (KB) = 1120084 Test 093 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.798178 - 0: The maximum resident set size (KB) = 1135288 + 0: The total amount of wall time = 364.759134 + 0: The maximum resident set size (KB) = 1119592 Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.679801 - 0: The maximum resident set size (KB) = 1126428 + 0: The total amount of wall time = 586.196784 + 0: The maximum resident set size (KB) = 1125680 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.943428 - 0: The maximum resident set size (KB) = 1127536 + 0: The total amount of wall time = 354.555327 + 0: The maximum resident set size (KB) = 1114964 Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 426.913328 - 0: The maximum resident set size (KB) = 1129284 + 0: The total amount of wall time = 429.746084 + 0: The maximum resident set size (KB) = 1130992 Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.849154 - 0: The maximum resident set size (KB) = 1117420 + 0: The total amount of wall time = 353.286532 + 0: The maximum resident set size (KB) = 1118364 Test 098 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 359.267595 - 0: The maximum resident set size (KB) = 501308 + 0: The total amount of wall time = 363.287460 + 0: The maximum resident set size (KB) = 504940 Test 099 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3466,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 322.786973 - 0: The maximum resident set size (KB) = 1017024 + 0: The total amount of wall time = 342.680396 + 0: The maximum resident set size (KB) = 1010808 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,100 +3488,100 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 519.851531 - 0: The maximum resident set size (KB) = 954820 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 491.148565 + 0: The maximum resident set size (KB) = 949428 Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 293.214990 - 0: The maximum resident set size (KB) = 900932 + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 252.017758 + 0: The maximum resident set size (KB) = 913752 Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,7 +3596,7 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3628,14 +3628,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.262387 - 0: The maximum resident set size (KB) = 860500 + 0: The total amount of wall time = 247.267167 + 0: The maximum resident set size (KB) = 850820 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,46 +3650,46 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 493.331705 - 0: The maximum resident set size (KB) = 970632 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 456.504454 + 0: The maximum resident set size (KB) = 975888 Test 104 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,46 +3704,46 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 246.833977 - 0: The maximum resident set size (KB) = 886056 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 232.544033 + 0: The maximum resident set size (KB) = 878420 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3758,120 +3758,120 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 283.959567 - 0: The maximum resident set size (KB) = 859356 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 263.736227 + 0: The maximum resident set size (KB) = 857936 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 390.372456 - 0: The maximum resident set size (KB) = 913792 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 352.580877 + 0: The maximum resident set size (KB) = 911652 Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.490293 - 0: The maximum resident set size (KB) = 836852 + 0: The total amount of wall time = 130.924851 + 0: The maximum resident set size (KB) = 841100 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 132.592204 - 0: The maximum resident set size (KB) = 786932 + 0: The total amount of wall time = 133.474969 + 0: The maximum resident set size (KB) = 790840 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3880,47 +3880,47 @@ Checking test 110 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 176.439488 - 0: The maximum resident set size (KB) = 1148060 + 0: The total amount of wall time = 162.699544 + 0: The maximum resident set size (KB) = 1146940 Test 110 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 72.388285 - 0: The maximum resident set size (KB) = 1096308 + 0: The total amount of wall time = 73.609969 + 0: The maximum resident set size (KB) = 1102528 Test 111 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 87.784302 - 0: The maximum resident set size (KB) = 1092240 + 0: The total amount of wall time = 86.546285 + 0: The maximum resident set size (KB) = 1087864 Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3935,155 +3935,155 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 329.577750 - 0: The maximum resident set size (KB) = 977840 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 320.290040 + 0: The maximum resident set size (KB) = 970296 Test 113 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.026438 - 0: The maximum resident set size (KB) = 1008292 + 0: The total amount of wall time = 349.349666 + 0: The maximum resident set size (KB) = 1008336 Test 114 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.958531 - 0: The maximum resident set size (KB) = 1010132 + 0: The total amount of wall time = 343.553346 + 0: The maximum resident set size (KB) = 1011832 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1085.699756 - 0: The maximum resident set size (KB) = 1177212 + 0: The total amount of wall time = 1082.456591 + 0: The maximum resident set size (KB) = 1176020 Test 116 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 630.386111 - 0: The maximum resident set size (KB) = 1124912 + 0: The total amount of wall time = 629.191976 + 0: The maximum resident set size (KB) = 1122956 Test 117 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/conus13km_radar_tten_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1088.618667 - 0: The maximum resident set size (KB) = 1243104 + 0: The total amount of wall time = 1078.337418 + 0: The maximum resident set size (KB) = 1246940 Test 118 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.821778 - 0: The maximum resident set size (KB) = 1033348 + 0: The total amount of wall time = 360.307596 + 0: The maximum resident set size (KB) = 1034200 Test 119 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 314.843239 - 0: The maximum resident set size (KB) = 1319720 + 0: The total amount of wall time = 319.879127 + 0: The maximum resident set size (KB) = 1376528 Test 120 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 377.761933 - 0: The maximum resident set size (KB) = 1714608 + 0: The total amount of wall time = 399.576428 + 0: The maximum resident set size (KB) = 1710224 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4092,14 +4092,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 498.970234 - 0: The maximum resident set size (KB) = 1394280 + 0: The total amount of wall time = 514.126042 + 0: The maximum resident set size (KB) = 1445888 Test 122 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,14 +4108,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 905.147685 - 0: The maximum resident set size (KB) = 1496680 + 0: The total amount of wall time = 979.065825 + 0: The maximum resident set size (KB) = 1490832 Test 123 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1010.893379 - 0: The maximum resident set size (KB) = 1501176 + 0: The total amount of wall time = 1089.082169 + 0: The maximum resident set size (KB) = 1476236 Test 124 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_docn_intel Checking test 125 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,14 +4141,14 @@ Checking test 125 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 461.813403 - 0: The maximum resident set size (KB) = 1468884 + 0: The total amount of wall time = 533.854984 + 0: The maximum resident set size (KB) = 1467016 Test 125 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_docn_oisst_intel Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,118 +4156,118 @@ Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 459.090651 - 0: The maximum resident set size (KB) = 1442304 + 0: The total amount of wall time = 551.216991 + 0: The maximum resident set size (KB) = 1454324 Test 126 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_cfsr_intel Checking test 127 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.223400 - 0: The maximum resident set size (KB) = 1024860 + 0: The total amount of wall time = 206.189309 + 0: The maximum resident set size (KB) = 1022520 Test 127 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_restart_cfsr_intel Checking test 128 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.018952 - 0: The maximum resident set size (KB) = 1000208 + 0: The total amount of wall time = 119.288211 + 0: The maximum resident set size (KB) = 995000 Test 128 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_gefs_intel Checking test 129 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.367406 - 0: The maximum resident set size (KB) = 902520 + 0: The total amount of wall time = 186.480429 + 0: The maximum resident set size (KB) = 906748 Test 129 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_iau_gefs_intel Checking test 130 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 223.004732 - 0: The maximum resident set size (KB) = 903660 + 0: The total amount of wall time = 202.345951 + 0: The maximum resident set size (KB) = 902620 Test 130 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_stochy_gefs_intel Checking test 131 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 232.897382 - 0: The maximum resident set size (KB) = 905456 + 0: The total amount of wall time = 202.872396 + 0: The maximum resident set size (KB) = 895556 Test 131 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_ciceC_cfsr_intel Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 236.831424 - 0: The maximum resident set size (KB) = 1026444 + 0: The total amount of wall time = 205.163571 + 0: The maximum resident set size (KB) = 1028336 Test 132 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_bulk_cfsr_intel Checking test 133 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 255.058295 - 0: The maximum resident set size (KB) = 1027864 + 0: The total amount of wall time = 218.533234 + 0: The maximum resident set size (KB) = 1016692 Test 133 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_bulk_gefs_intel Checking test 134 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 228.827150 - 0: The maximum resident set size (KB) = 902008 + 0: The total amount of wall time = 201.113339 + 0: The maximum resident set size (KB) = 902852 Test 134 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_mx025_cfsr_intel Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4276,14 +4276,14 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 548.797206 - 0: The maximum resident set size (KB) = 857572 + 0: The total amount of wall time = 533.990310 + 0: The maximum resident set size (KB) = 855536 Test 135 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_mx025_gefs_intel Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4292,77 +4292,77 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 538.575468 - 0: The maximum resident set size (KB) = 809624 + 0: The total amount of wall time = 528.323269 + 0: The maximum resident set size (KB) = 809552 Test 136 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_multiple_files_cfsr_intel Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.311429 - 0: The maximum resident set size (KB) = 1030560 + 0: The total amount of wall time = 203.958731 + 0: The maximum resident set size (KB) = 1025464 Test 137 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_3072x1536_cfsr_intel Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 298.326382 - 0: The maximum resident set size (KB) = 2366224 + 0: The total amount of wall time = 293.902565 + 0: The maximum resident set size (KB) = 2313036 Test 138 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_gfs_intel Checking test 139 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 289.348216 - 0: The maximum resident set size (KB) = 2367372 + 0: The total amount of wall time = 324.081494 + 0: The maximum resident set size (KB) = 2370664 Test 139 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_debug_cfsr_intel Checking test 140 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 459.786881 - 0: The maximum resident set size (KB) = 983408 + 0: The total amount of wall time = 459.769084 + 0: The maximum resident set size (KB) = 977936 Test 140 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_cfsr_faster_intel Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.473697 - 0: The maximum resident set size (KB) = 1027424 + 0: The total amount of wall time = 205.570795 + 0: The maximum resident set size (KB) = 1023320 Test 141 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_lnd_gswp3_intel Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4371,14 +4371,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.232386 - 0: The maximum resident set size (KB) = 220580 + 0: The total amount of wall time = 8.955530 + 0: The maximum resident set size (KB) = 223988 Test 142 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_lnd_gswp3_rst_intel Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4387,14 +4387,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 18.599291 - 0: The maximum resident set size (KB) = 221936 + 0: The total amount of wall time = 15.903201 + 0: The maximum resident set size (KB) = 222896 Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_atmlnd_sbs_intel Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4433,110 +4433,110 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 282.071664 - 0: The maximum resident set size (KB) = 1618120 + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 363.954993 + 0: The maximum resident set size (KB) = 1603080 Test 144 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmwav_control_noaero_p8_intel Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 126.371149 - 0: The maximum resident set size (KB) = 1587564 + 0: The total amount of wall time = 143.348379 + 0: The maximum resident set size (KB) = 1567972 Test 145 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_atmwav_intel Checking test 146 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4547,47 +4547,47 @@ Checking test 146 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 118.463693 - 0: The maximum resident set size (KB) = 604884 + 0: The total amount of wall time = 189.910893 + 0: The maximum resident set size (KB) = 578064 Test 146 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4599,46 +4599,46 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 312.047353 - 0: The maximum resident set size (KB) = 1658412 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 357.032307 + 0: The maximum resident set size (KB) = 1656256 Test 147 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4650,46 +4650,46 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 384.313267 - 0: The maximum resident set size (KB) = 1678740 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 418.331611 + 0: The maximum resident set size (KB) = 1680468 Test 148 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_153477/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4701,44 +4701,44 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 379.205945 - 0: The maximum resident set size (KB) = 1707700 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 434.196409 + 0: The maximum resident set size (KB) = 1693384 Test 149 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 19 21:04:41 UTC 2023 -Elapsed time: 02h:20m:56s. Have a nice day! +Thu Sep 21 17:17:21 UTC 2023 +Elapsed time: 02h:00m:38s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 2e798c182a..647d9946e5 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,11 +1,11 @@ -Tue Sep 19 19:57:23 CDT 2023 +Thu Sep 21 08:48:53 CDT 2023 Start Regression test -Testing UFSWM Hash: 15c7fde52750a00920dc4a4b429bab4a1890ca12 +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,46 +15,46 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 659 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 591 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 836 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 732 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 760 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 736 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 139 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 211 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 235 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 741 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 256 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 784 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 749 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 671 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 728 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 751 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1125 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 859 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 356 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 867 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1062 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 708 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 235 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 696 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 264 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 722 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 647 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 724 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 735 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 140 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 240 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 260 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 80 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 730 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 299 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 714 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 777 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 724 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 747 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 812 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 271 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1146 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 269 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 792 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 268 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1020 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -82,51 +82,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.372064 - 0: The maximum resident set size (KB) = 3161456 + 0: The total amount of wall time = 308.567499 + 0: The maximum resident set size (KB) = 3169812 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -153,51 +153,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.468469 - 0: The maximum resident set size (KB) = 1706248 + 0: The total amount of wall time = 220.632673 + 0: The maximum resident set size (KB) = 1712584 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -225,51 +225,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.713372 - 0: The maximum resident set size (KB) = 3209608 + 0: The total amount of wall time = 341.030837 + 0: The maximum resident set size (KB) = 3212956 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,51 +285,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.218324 - 0: The maximum resident set size (KB) = 3255368 + 0: The total amount of wall time = 207.146098 + 0: The maximum resident set size (KB) = 3262228 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -357,7 +357,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -388,20 +388,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.333767 - 0: The maximum resident set size (KB) = 3222876 + 0: The total amount of wall time = 349.816884 + 0: The maximum resident set size (KB) = 3220356 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,7 +417,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -448,20 +448,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.532378 - 0: The maximum resident set size (KB) = 3092884 + 0: The total amount of wall time = 212.701287 + 0: The maximum resident set size (KB) = 3088068 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,51 +477,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 365.978228 - 0: The maximum resident set size (KB) = 3553464 + 0: The total amount of wall time = 376.555704 + 0: The maximum resident set size (KB) = 3553408 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,51 +537,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.692867 - 0: The maximum resident set size (KB) = 3198188 + 0: The total amount of wall time = 336.169917 + 0: The maximum resident set size (KB) = 3204304 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -597,51 +597,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.081264 - 0: The maximum resident set size (KB) = 2994716 + 0: The total amount of wall time = 287.164015 + 0: The maximum resident set size (KB) = 3066544 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -669,51 +669,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.786750 - 0: The maximum resident set size (KB) = 3214556 + 0: The total amount of wall time = 339.232396 + 0: The maximum resident set size (KB) = 3210120 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -729,51 +729,51 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 586.142785 - 0: The maximum resident set size (KB) = 3328072 + 0: The total amount of wall time = 601.150376 + 0: The maximum resident set size (KB) = 3325720 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -789,51 +789,51 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 386.729834 - 0: The maximum resident set size (KB) = 3620132 + 0: The total amount of wall time = 396.080581 + 0: The maximum resident set size (KB) = 3626076 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -841,54 +841,54 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.919668 - 0: The maximum resident set size (KB) = 4086984 + 0: The total amount of wall time = 850.058748 + 0: The maximum resident set size (KB) = 4034740 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -896,125 +896,125 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.276739 - 0: The maximum resident set size (KB) = 4370592 + 0: The total amount of wall time = 507.408403 + 0: The maximum resident set size (KB) = 4351864 -Test 014 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_noaero_p8_intel -Checking test 015 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK +Test 014 cpld_restart_bmark_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_noaero_p8_intel +Checking test 015 cpld_control_noaero_p8_intel results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.113085 - 0: The maximum resident set size (KB) = 1735860 + 0: The total amount of wall time = 256.943273 + 0: The maximum resident set size (KB) = 1744376 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1041,49 +1041,49 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.141925 - 0: The maximum resident set size (KB) = 1781156 + 0: The total amount of wall time = 258.733044 + 0: The maximum resident set size (KB) = 1783348 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1099,51 +1099,51 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 541.535170 - 0: The maximum resident set size (KB) = 3245660 + 0: The total amount of wall time = 554.027250 + 0: The maximum resident set size (KB) = 3250224 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1158,51 +1158,51 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.364802 - 0: The maximum resident set size (KB) = 1755160 + 0: The total amount of wall time = 369.631125 + 0: The maximum resident set size (KB) = 1755820 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1229,49 +1229,49 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.184380 - 0: The maximum resident set size (KB) = 1781112 + 0: The total amount of wall time = 266.401520 + 0: The maximum resident set size (KB) = 1780016 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1286,49 +1286,49 @@ Checking test 020 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 502.826924 - 0: The maximum resident set size (KB) = 2821172 + 0: The total amount of wall time = 498.721881 + 0: The maximum resident set size (KB) = 2835176 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1356,51 +1356,51 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.398820 - 0: The maximum resident set size (KB) = 3136176 + 0: The total amount of wall time = 319.850562 + 0: The maximum resident set size (KB) = 3214784 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1427,51 +1427,51 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1216.300520 - 0: The maximum resident set size (KB) = 1776548 + 0: The total amount of wall time = 1209.471884 + 0: The maximum resident set size (KB) = 1775808 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1486,51 +1486,51 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 592.910488 - 0: The maximum resident set size (KB) = 1156300 + 0: The total amount of wall time = 584.768183 + 0: The maximum resident set size (KB) = 1152104 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1557,51 +1557,51 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1069.502156 - 0: The maximum resident set size (KB) = 1677200 + 0: The total amount of wall time = 1063.089894 + 0: The maximum resident set size (KB) = 1670868 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1616,51 +1616,51 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1380.468315 - 0: The maximum resident set size (KB) = 1727324 + 0: The total amount of wall time = 1414.310590 + 0: The maximum resident set size (KB) = 1718852 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.859840 - 0: The maximum resident set size (KB) = 652644 + 0: The total amount of wall time = 197.883246 + 0: The maximum resident set size (KB) = 695620 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,36 +1705,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.915807 - 0: The maximum resident set size (KB) = 641488 + 0: The total amount of wall time = 131.455411 + 0: The maximum resident set size (KB) = 646600 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.751696 - 0: The maximum resident set size (KB) = 648760 + 0: The total amount of wall time = 147.676787 + 0: The maximum resident set size (KB) = 652960 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.212582 - 0: The maximum resident set size (KB) = 642340 + 0: The total amount of wall time = 138.635514 + 0: The maximum resident set size (KB) = 643284 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.256865 - 0: The maximum resident set size (KB) = 646016 + 0: The total amount of wall time = 141.826504 + 0: The maximum resident set size (KB) = 641372 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0: The total amount of wall time = 346.108989 -0: The maximum resident set size (KB) = 834516 +0: The total amount of wall time = 347.695298 +0: The maximum resident set size (KB) = 824960 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.656356 - 0: The maximum resident set size (KB) = 789356 + 0: The total amount of wall time = 532.806983 + 0: The maximum resident set size (KB) = 785200 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 580.786439 - 0: The maximum resident set size (KB) = 1351092 + 0: The total amount of wall time = 583.893811 + 0: The maximum resident set size (KB) = 1353048 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 512.435234 - 0: The maximum resident set size (KB) = 1454852 + 0: The total amount of wall time = 516.859628 + 0: The maximum resident set size (KB) = 1446872 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.386595 - 0: The maximum resident set size (KB) = 651780 + 0: The total amount of wall time = 89.727420 + 0: The maximum resident set size (KB) = 649132 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.543584 - 0: The maximum resident set size (KB) = 558676 + 0: The total amount of wall time = 55.637095 + 0: The maximum resident set size (KB) = 560940 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.233236 - 0: The maximum resident set size (KB) = 646324 + 0: The total amount of wall time = 85.871417 + 0: The maximum resident set size (KB) = 645128 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.280531 - 0: The maximum resident set size (KB) = 646384 + 0: The total amount of wall time = 135.314313 + 0: The maximum resident set size (KB) = 647428 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.621693 - 0: The maximum resident set size (KB) = 644680 + 0: The total amount of wall time = 137.069461 + 0: The maximum resident set size (KB) = 643552 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.656931 - 0: The maximum resident set size (KB) = 1570376 + 0: The total amount of wall time = 174.910861 + 0: The maximum resident set size (KB) = 1616780 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.896954 - 0: The maximum resident set size (KB) = 932912 + 0: The total amount of wall time = 94.396396 + 0: The maximum resident set size (KB) = 893416 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.902519 - 0: The maximum resident set size (KB) = 1626088 + 0: The total amount of wall time = 176.463707 + 0: The maximum resident set size (KB) = 1634808 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 92.236559 - 0: The maximum resident set size (KB) = 878636 + 0: The total amount of wall time = 95.583625 + 0: The maximum resident set size (KB) = 876936 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 181.956494 - 0: The maximum resident set size (KB) = 1602756 + 0: The total amount of wall time = 182.111495 + 0: The maximum resident set size (KB) = 1607880 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 181.842682 - 0: The maximum resident set size (KB) = 1701536 + 0: The total amount of wall time = 177.411564 + 0: The maximum resident set size (KB) = 1704656 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.010018 - 0: The maximum resident set size (KB) = 1617372 + 0: The total amount of wall time = 317.461674 + 0: The maximum resident set size (KB) = 1585748 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.741322 - 0: The maximum resident set size (KB) = 1691844 + 0: The total amount of wall time = 234.436468 + 0: The maximum resident set size (KB) = 1687776 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.761551 - 0: The maximum resident set size (KB) = 1624812 + 0: The total amount of wall time = 173.812790 + 0: The maximum resident set size (KB) = 1628264 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.313798 - 0: The maximum resident set size (KB) = 1637012 + 0: The total amount of wall time = 193.971452 + 0: The maximum resident set size (KB) = 1632072 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.387591 - 0: The maximum resident set size (KB) = 1097696 + 0: The total amount of wall time = 294.186416 + 0: The maximum resident set size (KB) = 1096736 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.864160 - 0: The maximum resident set size (KB) = 1088316 + 0: The total amount of wall time = 154.368594 + 0: The maximum resident set size (KB) = 1088304 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.286883 - 0: The maximum resident set size (KB) = 1099132 + 0: The total amount of wall time = 293.557847 + 0: The maximum resident set size (KB) = 1099036 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.147842 - 0: The maximum resident set size (KB) = 1088188 + 0: The total amount of wall time = 155.298548 + 0: The maximum resident set size (KB) = 1090060 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.556758 - 0: The maximum resident set size (KB) = 1098900 + 0: The total amount of wall time = 311.692625 + 0: The maximum resident set size (KB) = 1088480 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 202.199358 - 0: The maximum resident set size (KB) = 1071932 + 0: The total amount of wall time = 203.314053 + 0: The maximum resident set size (KB) = 1087316 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 286.641462 - 0: The maximum resident set size (KB) = 1367724 + 0: The total amount of wall time = 291.404412 + 0: The maximum resident set size (KB) = 1366264 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.761686 - 0: The maximum resident set size (KB) = 1092336 + 0: The total amount of wall time = 290.505792 + 0: The maximum resident set size (KB) = 1088844 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.552712 - 0: The maximum resident set size (KB) = 1099440 + 0: The total amount of wall time = 295.305061 + 0: The maximum resident set size (KB) = 1096304 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.000991 - 0: The maximum resident set size (KB) = 920144 + 0: The total amount of wall time = 369.836695 + 0: The maximum resident set size (KB) = 923040 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 455.725450 - 0: The maximum resident set size (KB) = 1246712 + 0: The total amount of wall time = 449.773012 + 0: The maximum resident set size (KB) = 1246140 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 268.544165 - 0: The maximum resident set size (KB) = 1210272 + 0: The total amount of wall time = 266.177406 + 0: The maximum resident set size (KB) = 1213368 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 472.373023 - 0: The maximum resident set size (KB) = 1168296 + 0: The total amount of wall time = 473.722664 + 0: The maximum resident set size (KB) = 1172004 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 454.740956 - 0: The maximum resident set size (KB) = 1325604 + 0: The total amount of wall time = 465.227507 + 0: The maximum resident set size (KB) = 1324792 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.922042 - 0: The maximum resident set size (KB) = 1148364 + 0: The total amount of wall time = 229.400482 + 0: The maximum resident set size (KB) = 1140928 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.924456 - 0: The maximum resident set size (KB) = 1247136 + 0: The total amount of wall time = 456.888381 + 0: The maximum resident set size (KB) = 1198192 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 475.285796 - 0: The maximum resident set size (KB) = 1175836 + 0: The total amount of wall time = 477.798175 + 0: The maximum resident set size (KB) = 1170964 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 336.885323 - 0: The maximum resident set size (KB) = 1177540 + 0: The total amount of wall time = 335.372405 + 0: The maximum resident set size (KB) = 1169756 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.898433 - 0: The maximum resident set size (KB) = 1187508 + 0: The total amount of wall time = 437.328227 + 0: The maximum resident set size (KB) = 1151332 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.161346 - 0: The maximum resident set size (KB) = 1086856 + 0: The total amount of wall time = 434.488858 + 0: The maximum resident set size (KB) = 1087756 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 447.593226 - 0: The maximum resident set size (KB) = 1123836 + 0: The total amount of wall time = 452.499980 + 0: The maximum resident set size (KB) = 1117900 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 364.623396 - 0: The maximum resident set size (KB) = 1134636 + 0: The total amount of wall time = 368.626690 + 0: The maximum resident set size (KB) = 1132924 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.876241 - 0: The maximum resident set size (KB) = 1114320 + 0: The total amount of wall time = 322.961819 + 0: The maximum resident set size (KB) = 1120448 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.378091 - 0: The maximum resident set size (KB) = 1024428 + 0: The total amount of wall time = 326.378650 + 0: The maximum resident set size (KB) = 1020768 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 441.778572 - 0: The maximum resident set size (KB) = 1201268 + 0: The total amount of wall time = 449.956773 + 0: The maximum resident set size (KB) = 1197544 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.117517 - 0: The maximum resident set size (KB) = 800828 + 0: The total amount of wall time = 536.224815 + 0: The maximum resident set size (KB) = 802460 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 516.254937 - 0: The maximum resident set size (KB) = 908880 + 0: The total amount of wall time = 521.317457 + 0: The maximum resident set size (KB) = 915432 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_gf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 447.407508 - 0: The maximum resident set size (KB) = 1235184 + 0: The total amount of wall time = 451.790232 + 0: The maximum resident set size (KB) = 1233180 Test 077 hrrr_gf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_c3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,14 +3472,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 449.896574 - 0: The maximum resident set size (KB) = 1232516 + 0: The total amount of wall time = 455.865548 + 0: The maximum resident set size (KB) = 1231916 Test 078 hrrr_c3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3490,14 +3490,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.152649 - 0: The maximum resident set size (KB) = 819812 + 0: The total amount of wall time = 341.545321 + 0: The maximum resident set size (KB) = 820444 Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3508,14 +3508,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.713279 - 0: The maximum resident set size (KB) = 816632 + 0: The total amount of wall time = 335.711379 + 0: The maximum resident set size (KB) = 819252 Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3526,26 +3526,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.717954 - 0: The maximum resident set size (KB) = 811824 + 0: The total amount of wall time = 188.855885 + 0: The maximum resident set size (KB) = 822408 Test 081 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.491021 - 0: The maximum resident set size (KB) = 710904 + 0: The total amount of wall time = 114.842961 + 0: The maximum resident set size (KB) = 677024 Test 082 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3592,14 +3592,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.769183 - 0: The maximum resident set size (KB) = 1612676 + 0: The total amount of wall time = 156.893700 + 0: The maximum resident set size (KB) = 1614760 Test 083 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.082562 - 0: The maximum resident set size (KB) = 1092036 + 0: The total amount of wall time = 265.956572 + 0: The maximum resident set size (KB) = 1093156 Test 084 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3644,348 +3644,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.842709 - 0: The maximum resident set size (KB) = 799536 + 0: The total amount of wall time = 158.364422 + 0: The maximum resident set size (KB) = 795348 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.491537 - 0: The maximum resident set size (KB) = 798840 + 0: The total amount of wall time = 151.414729 + 0: The maximum resident set size (KB) = 799596 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.244611 - 0: The maximum resident set size (KB) = 808668 + 0: The total amount of wall time = 177.766558 + 0: The maximum resident set size (KB) = 811952 Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.411866 - 0: The maximum resident set size (KB) = 801500 + 0: The total amount of wall time = 159.552739 + 0: The maximum resident set size (KB) = 805128 Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.555884 - 0: The maximum resident set size (KB) = 854216 + 0: The total amount of wall time = 235.738078 + 0: The maximum resident set size (KB) = 853832 Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.904512 - 0: The maximum resident set size (KB) = 852128 + 0: The total amount of wall time = 233.809241 + 0: The maximum resident set size (KB) = 853948 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.502178 - 0: The maximum resident set size (KB) = 814012 + 0: The total amount of wall time = 157.912054 + 0: The maximum resident set size (KB) = 812748 Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.869276 - 0: The maximum resident set size (KB) = 855512 + 0: The total amount of wall time = 161.044598 + 0: The maximum resident set size (KB) = 854260 Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.607476 - 0: The maximum resident set size (KB) = 1631024 + 0: The total amount of wall time = 174.233129 + 0: The maximum resident set size (KB) = 1596112 Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1017.533024 - 0: The maximum resident set size (KB) = 1109060 + 0: The total amount of wall time = 989.922154 + 0: The maximum resident set size (KB) = 1110280 Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.878220 - 0: The maximum resident set size (KB) = 1190264 + 0: The total amount of wall time = 276.607209 + 0: The maximum resident set size (KB) = 1188480 Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.721024 - 0: The maximum resident set size (KB) = 1184308 + 0: The total amount of wall time = 280.366999 + 0: The maximum resident set size (KB) = 1183888 Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.701843 - 0: The maximum resident set size (KB) = 1191260 + 0: The total amount of wall time = 288.872510 + 0: The maximum resident set size (KB) = 1186132 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.951739 - 0: The maximum resident set size (KB) = 1266656 + 0: The total amount of wall time = 290.978522 + 0: The maximum resident set size (KB) = 1266164 Test 098 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.856715 - 0: The maximum resident set size (KB) = 1194856 + 0: The total amount of wall time = 281.931715 + 0: The maximum resident set size (KB) = 1197048 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.251003 - 0: The maximum resident set size (KB) = 1204292 + 0: The total amount of wall time = 285.386244 + 0: The maximum resident set size (KB) = 1177492 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.992059 - 0: The maximum resident set size (KB) = 1189528 + 0: The total amount of wall time = 281.594220 + 0: The maximum resident set size (KB) = 1187680 Test 101 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.402789 - 0: The maximum resident set size (KB) = 1133376 + 0: The total amount of wall time = 281.735339 + 0: The maximum resident set size (KB) = 1194156 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.655982 - 0: The maximum resident set size (KB) = 1185416 + 0: The total amount of wall time = 280.348339 + 0: The maximum resident set size (KB) = 1191184 Test 103 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.713163 - 0: The maximum resident set size (KB) = 1187980 + 0: The total amount of wall time = 280.388970 + 0: The maximum resident set size (KB) = 1198652 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.010892 - 0: The maximum resident set size (KB) = 1191712 + 0: The total amount of wall time = 470.446378 + 0: The maximum resident set size (KB) = 1174528 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.386244 - 0: The maximum resident set size (KB) = 1179220 + 0: The total amount of wall time = 273.291355 + 0: The maximum resident set size (KB) = 1195812 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.994053 - 0: The maximum resident set size (KB) = 1207380 + 0: The total amount of wall time = 361.304697 + 0: The maximum resident set size (KB) = 1190016 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.435063 - 0: The maximum resident set size (KB) = 1191424 + 0: The total amount of wall time = 286.412050 + 0: The maximum resident set size (KB) = 1149948 Test 108 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.059652 - 0: The maximum resident set size (KB) = 588952 + 0: The total amount of wall time = 291.664343 + 0: The maximum resident set size (KB) = 589808 Test 109 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3996,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 247.461504 - 0: The maximum resident set size (KB) = 1111216 + 0: The total amount of wall time = 250.787098 + 0: The maximum resident set size (KB) = 1107344 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4050,14 +4050,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 371.914924 - 0: The maximum resident set size (KB) = 1111176 + 0: The total amount of wall time = 372.504441 + 0: The maximum resident set size (KB) = 1111628 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.014556 - 0: The maximum resident set size (KB) = 1035304 + 0: The total amount of wall time = 193.495194 + 0: The maximum resident set size (KB) = 1028896 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.687381 - 0: The maximum resident set size (KB) = 986160 + 0: The total amount of wall time = 193.185191 + 0: The maximum resident set size (KB) = 981168 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 382.505826 - 0: The maximum resident set size (KB) = 1127828 + 0: The total amount of wall time = 383.485937 + 0: The maximum resident set size (KB) = 1128324 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.759898 - 0: The maximum resident set size (KB) = 977888 + 0: The total amount of wall time = 164.030369 + 0: The maximum resident set size (KB) = 973208 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4320,14 +4320,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 205.752277 - 0: The maximum resident set size (KB) = 990456 + 0: The total amount of wall time = 203.462130 + 0: The maximum resident set size (KB) = 975284 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4366,42 +4366,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 273.700240 - 0: The maximum resident set size (KB) = 1054400 + 0: The total amount of wall time = 275.432038 + 0: The maximum resident set size (KB) = 1064684 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.554204 - 0: The maximum resident set size (KB) = 942092 + 0: The total amount of wall time = 99.331663 + 0: The maximum resident set size (KB) = 933336 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.505341 - 0: The maximum resident set size (KB) = 889516 + 0: The total amount of wall time = 102.694070 + 0: The maximum resident set size (KB) = 889888 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 114.459780 - 0: The maximum resident set size (KB) = 1252576 + 0: The total amount of wall time = 116.602836 + 0: The maximum resident set size (KB) = 1254352 Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.015261 - 0: The maximum resident set size (KB) = 1166480 + 0: The total amount of wall time = 51.485562 + 0: The maximum resident set size (KB) = 1179408 Test 121 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.266995 - 0: The maximum resident set size (KB) = 1192688 + 0: The total amount of wall time = 66.130322 + 0: The maximum resident set size (KB) = 1188712 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,123 +4497,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 244.052206 - 0: The maximum resident set size (KB) = 1100808 + 0: The total amount of wall time = 243.686048 + 0: The maximum resident set size (KB) = 1102064 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.868077 - 0: The maximum resident set size (KB) = 1068188 + 0: The total amount of wall time = 278.101103 + 0: The maximum resident set size (KB) = 1071688 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.183238 - 0: The maximum resident set size (KB) = 1065156 + 0: The total amount of wall time = 276.001821 + 0: The maximum resident set size (KB) = 1067884 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 836.528656 - 0: The maximum resident set size (KB) = 1275252 + 0: The total amount of wall time = 874.531175 + 0: The maximum resident set size (KB) = 1274176 Test 126 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 479.038346 - 0: The maximum resident set size (KB) = 1178700 + 0: The total amount of wall time = 488.806099 + 0: The maximum resident set size (KB) = 1207748 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 863.414028 - 0: The maximum resident set size (KB) = 1351888 + 0: The total amount of wall time = 844.865787 + 0: The maximum resident set size (KB) = 1344916 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.613011 - 0: The maximum resident set size (KB) = 1104884 + 0: The total amount of wall time = 290.737395 + 0: The maximum resident set size (KB) = 1114872 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 248.302468 - 0: The maximum resident set size (KB) = 1243080 + 0: The total amount of wall time = 248.339457 + 0: The maximum resident set size (KB) = 1243012 Test 130 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 332.731498 - 0: The maximum resident set size (KB) = 1585568 + 0: The total amount of wall time = 339.231837 + 0: The maximum resident set size (KB) = 1595620 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 373.204713 - 0: The maximum resident set size (KB) = 1424856 + 0: The total amount of wall time = 376.802516 + 0: The maximum resident set size (KB) = 1425880 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4638,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 730.133454 - 0: The maximum resident set size (KB) = 1455996 + 0: The total amount of wall time = 726.946066 + 0: The maximum resident set size (KB) = 1452928 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4656,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.469679 - 0: The maximum resident set size (KB) = 1478776 + 0: The total amount of wall time = 827.834989 + 0: The maximum resident set size (KB) = 1481064 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4685,14 +4685,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 341.537869 - 0: The maximum resident set size (KB) = 658896 + 0: The total amount of wall time = 339.816357 + 0: The maximum resident set size (KB) = 655636 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4714,14 +4714,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 346.415681 - 0: The maximum resident set size (KB) = 506184 + 0: The total amount of wall time = 355.673331 + 0: The maximum resident set size (KB) = 504860 Test 136 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,14 +4730,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 392.377776 - 0: The maximum resident set size (KB) = 662248 + 0: The total amount of wall time = 391.251097 + 0: The maximum resident set size (KB) = 663384 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4784,14 +4784,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.837818 - 0: The maximum resident set size (KB) = 401744 + 0: The total amount of wall time = 166.293791 + 0: The maximum resident set size (KB) = 404524 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4838,14 +4838,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.901685 - 0: The maximum resident set size (KB) = 376356 + 0: The total amount of wall time = 180.726084 + 0: The maximum resident set size (KB) = 381500 Test 139 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4927,14 +4927,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.481006 - 0: The maximum resident set size (KB) = 480960 + 0: The total amount of wall time = 431.093318 + 0: The maximum resident set size (KB) = 477836 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5016,14 +5016,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - 0: The total amount of wall time = 452.377919 - 0: The maximum resident set size (KB) = 476852 + 0: The total amount of wall time = 455.811226 + 0: The maximum resident set size (KB) = 477844 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 216.219352 - 0: The maximum resident set size (KB) = 675856 + 0: The total amount of wall time = 219.879604 + 0: The maximum resident set size (KB) = 670252 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 207.929262 - 0: The maximum resident set size (KB) = 622204 + 0: The total amount of wall time = 203.865406 + 0: The maximum resident set size (KB) = 673072 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,14 +5090,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - 0: The total amount of wall time = 213.366195 - 0: The maximum resident set size (KB) = 532548 + 0: The total amount of wall time = 216.230452 + 0: The maximum resident set size (KB) = 530768 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5106,42 +5106,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.041458 - 0: The maximum resident set size (KB) = 719848 + 0: The total amount of wall time = 287.256368 + 0: The maximum resident set size (KB) = 720024 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.488258 - 0: The maximum resident set size (KB) = 416464 + 0: The total amount of wall time = 66.270256 + 0: The maximum resident set size (KB) = 421264 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.361140 - 0: The maximum resident set size (KB) = 729676 + 0: The total amount of wall time = 754.808903 + 0: The maximum resident set size (KB) = 734512 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5152,14 +5152,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 530.764540 - 0: The maximum resident set size (KB) = 808004 + 0: The total amount of wall time = 533.066340 + 0: The maximum resident set size (KB) = 813384 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,14 +5167,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 337.627336 - 0: The maximum resident set size (KB) = 1411424 + 0: The total amount of wall time = 344.755337 + 0: The maximum resident set size (KB) = 1406848 Test 149 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5182,131 +5182,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.463853 - 0: The maximum resident set size (KB) = 1390180 + 0: The total amount of wall time = 339.763568 + 0: The maximum resident set size (KB) = 1397944 Test 150 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 947.915140 - 0: The maximum resident set size (KB) = 1154284 + 0: The total amount of wall time = 953.294256 + 0: The maximum resident set size (KB) = 1159092 Test 151 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.001764 - 0: The maximum resident set size (KB) = 1119624 + 0: The total amount of wall time = 149.839135 + 0: The maximum resident set size (KB) = 1115380 Test 152 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.049051 - 0: The maximum resident set size (KB) = 1070984 + 0: The total amount of wall time = 92.178549 + 0: The maximum resident set size (KB) = 1069632 Test 153 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.710962 - 0: The maximum resident set size (KB) = 997704 + 0: The total amount of wall time = 142.020550 + 0: The maximum resident set size (KB) = 1005340 Test 154 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.225557 - 0: The maximum resident set size (KB) = 1001312 + 0: The total amount of wall time = 143.688396 + 0: The maximum resident set size (KB) = 991800 Test 155 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.055949 - 0: The maximum resident set size (KB) = 1003968 + 0: The total amount of wall time = 149.764805 + 0: The maximum resident set size (KB) = 1010808 Test 156 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.747198 - 0: The maximum resident set size (KB) = 1126848 + 0: The total amount of wall time = 149.607652 + 0: The maximum resident set size (KB) = 1112300 Test 157 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.875501 - 0: The maximum resident set size (KB) = 1117240 + 0: The total amount of wall time = 150.734282 + 0: The maximum resident set size (KB) = 1113892 Test 158 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.544346 - 0: The maximum resident set size (KB) = 1003992 + 0: The total amount of wall time = 144.200265 + 0: The maximum resident set size (KB) = 1008680 Test 159 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5315,14 +5315,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.719755 - 0: The maximum resident set size (KB) = 1026924 + 0: The total amount of wall time = 458.307597 + 0: The maximum resident set size (KB) = 1035672 Test 160 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5331,77 +5331,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 451.202118 - 0: The maximum resident set size (KB) = 1015100 + 0: The total amount of wall time = 442.349873 + 0: The maximum resident set size (KB) = 996164 Test 161 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.976513 - 0: The maximum resident set size (KB) = 1099412 + 0: The total amount of wall time = 146.406145 + 0: The maximum resident set size (KB) = 1119936 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.823374 - 0: The maximum resident set size (KB) = 2346376 + 0: The total amount of wall time = 206.516019 + 0: The maximum resident set size (KB) = 2461876 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 203.034099 - 0: The maximum resident set size (KB) = 2472284 + 0: The total amount of wall time = 211.784420 + 0: The maximum resident set size (KB) = 2448488 Test 164 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.577264 - 0: The maximum resident set size (KB) = 1052728 + 0: The total amount of wall time = 359.897814 + 0: The maximum resident set size (KB) = 1043796 Test 165 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.460355 - 0: The maximum resident set size (KB) = 1125456 + 0: The total amount of wall time = 150.560212 + 0: The maximum resident set size (KB) = 1114740 Test 166 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.382204 - 0: The maximum resident set size (KB) = 253948 + 0: The total amount of wall time = 6.920207 + 0: The maximum resident set size (KB) = 255948 Test 167 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.029727 - 0: The maximum resident set size (KB) = 258584 + 0: The total amount of wall time = 11.599807 + 0: The maximum resident set size (KB) = 260356 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5518,14 +5518,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 206.990009 - 0: The maximum resident set size (KB) = 1633864 + 0: The total amount of wall time = 203.928767 + 0: The maximum resident set size (KB) = 1626548 Test 169 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5568,14 +5568,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.766713 - 0: The maximum resident set size (KB) = 1655644 + 0: The total amount of wall time = 94.864080 + 0: The maximum resident set size (KB) = 1660880 Test 170 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.715349 - 0: The maximum resident set size (KB) = 667148 + 0: The total amount of wall time = 89.645017 + 0: The maximum resident set size (KB) = 616612 Test 171 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5670,14 +5670,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.807583 - 0: The maximum resident set size (KB) = 3010680 + 0: The total amount of wall time = 229.798610 + 0: The maximum resident set size (KB) = 3013520 Test 172 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.215927 - 0: The maximum resident set size (KB) = 3070792 + 0: The total amount of wall time = 283.160935 + 0: The maximum resident set size (KB) = 3073904 Test 173 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5772,14 +5772,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.153576 - 0: The maximum resident set size (KB) = 3007840 + 0: The total amount of wall time = 286.920230 + 0: The maximum resident set size (KB) = 3087948 Test 174 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5795,14 +5795,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 627.617129 - 0: The maximum resident set size (KB) = 5571112 + 0: The total amount of wall time = 635.852082 + 0: The maximum resident set size (KB) = 5591296 Test 175 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1223.416388 - 0: The maximum resident set size (KB) = 4958480 + 0: The total amount of wall time = 1192.919198 + 0: The maximum resident set size (KB) = 4959524 Test 176 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_179054/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,12 +5839,12 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 556.406917 - 0: The maximum resident set size (KB) = 5599352 + 0: The total amount of wall time = 571.220095 + 0: The maximum resident set size (KB) = 5593328 Test 177 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 19 21:23:00 CDT 2023 -Elapsed time: 01h:25m:38s. Have a nice day! +Thu Sep 21 10:26:27 CDT 2023 +Elapsed time: 01h:37m:35s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index fafc00224a..f0f4052e65 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,11 +1,11 @@ -Wed Sep 20 12:19:52 UTC 2023 +Thu Sep 21 14:06:22 UTC 2023 Start Regression test -Testing UFSWM Hash: 904f5513b638c99ce2dde2b882331c0aad689a99 +Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) + 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) @@ -15,36 +15,36 @@ Testing With Submodule Hashes: 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 672 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 373 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1133 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1501 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1516 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1881 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 708 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 2160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 710 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1100 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1766 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1276 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 2152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 1312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1923 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 729 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 2443 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1197 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1162 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 757 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 589 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 595 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 661 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 820 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 749 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 554 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1705 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 711 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1494 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 823 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 912 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1145 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 592 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1318 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -72,51 +72,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 352.242326 -The maximum resident set size (KB) = 2967884 +The total amount of wall time = 358.827742 +The maximum resident set size (KB) = 2967168 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -143,51 +143,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.371091 -The maximum resident set size (KB) = 1569880 +The total amount of wall time = 272.828442 +The maximum resident set size (KB) = 1570220 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -215,51 +215,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.667439 -The maximum resident set size (KB) = 2996776 +The total amount of wall time = 391.732115 +The maximum resident set size (KB) = 2994224 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -275,51 +275,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 240.163945 -The maximum resident set size (KB) = 3057488 +The total amount of wall time = 238.950124 +The maximum resident set size (KB) = 3057244 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -347,7 +347,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -378,20 +378,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 400.502333 -The maximum resident set size (KB) = 3006604 +The total amount of wall time = 396.164993 +The maximum resident set size (KB) = 3012828 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -407,7 +407,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -438,20 +438,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 245.327767 -The maximum resident set size (KB) = 2893328 +The total amount of wall time = 243.247637 +The maximum resident set size (KB) = 2892400 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -467,51 +467,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 348.259888 -The maximum resident set size (KB) = 3299232 +The total amount of wall time = 351.395265 +The maximum resident set size (KB) = 3299204 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -527,51 +527,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.468872 -The maximum resident set size (KB) = 2992008 +The total amount of wall time = 388.360267 +The maximum resident set size (KB) = 2990288 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -587,51 +587,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.760979 -The maximum resident set size (KB) = 2928472 +The total amount of wall time = 326.134247 +The maximum resident set size (KB) = 2925744 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -659,51 +659,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.003305 -The maximum resident set size (KB) = 2992528 +The total amount of wall time = 392.738093 +The maximum resident set size (KB) = 2997488 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -711,54 +711,54 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 807.168545 -The maximum resident set size (KB) = 3953688 +The total amount of wall time = 794.525266 +The maximum resident set size (KB) = 3951624 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -766,54 +766,54 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_1.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_2.nc ............ALT CHECK......OK - Comparing RESTART/20130401.060000.MOM.res_3.nc ............ALT CHECK......OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 627.141434 -The maximum resident set size (KB) = 4247468 +The total amount of wall time = 691.247962 +The maximum resident set size (KB) = 4246540 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -840,51 +840,51 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 290.329593 -The maximum resident set size (KB) = 1583432 +The total amount of wall time = 301.662553 +The maximum resident set size (KB) = 1578844 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -911,49 +911,49 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.974152 -The maximum resident set size (KB) = 1639080 +The total amount of wall time = 316.064770 +The maximum resident set size (KB) = 1625184 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -980,49 +980,49 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 304.307472 -The maximum resident set size (KB) = 1625616 +The total amount of wall time = 325.644061 +The maximum resident set size (KB) = 1632924 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1037,49 +1037,49 @@ Checking test 016 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 442.347024 -The maximum resident set size (KB) = 2643588 +The total amount of wall time = 451.483678 +The maximum resident set size (KB) = 2648648 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1107,51 +1107,51 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.175747 -The maximum resident set size (KB) = 2996556 +The total amount of wall time = 385.574517 +The maximum resident set size (KB) = 3000652 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_pdlib_p8_intel Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1215,14 @@ Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1160.262894 -The maximum resident set size (KB) = 1600908 +The total amount of wall time = 1170.957692 +The maximum resident set size (KB) = 1603172 Test 018 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_pdlib_p8_intel Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1274,14 +1274,14 @@ Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 581.427207 -The maximum resident set size (KB) = 877096 +The total amount of wall time = 605.867487 +The maximum resident set size (KB) = 879164 Test 019 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_mpi_pdlib_p8_intel Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1072.551395 -The maximum resident set size (KB) = 1573680 +The total amount of wall time = 1075.168799 +The maximum resident set size (KB) = 1589308 Test 020 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_debug_pdlib_p8_intel Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1404,14 +1404,14 @@ Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1417.376609 -The maximum resident set size (KB) = 1626884 +The total amount of wall time = 1427.888179 +The maximum resident set size (KB) = 1629236 Test 021 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1422,14 +1422,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 224.629334 -The maximum resident set size (KB) = 561228 +The total amount of wall time = 217.703986 +The maximum resident set size (KB) = 559776 Test 022 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 134.436447 -The maximum resident set size (KB) = 510940 +The total amount of wall time = 131.877079 +The maximum resident set size (KB) = 514160 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.415386 -The maximum resident set size (KB) = 518296 +The total amount of wall time = 144.544647 +The maximum resident set size (KB) = 517448 Test 024 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.764681 -The maximum resident set size (KB) = 516048 +The total amount of wall time = 134.742028 +The maximum resident set size (KB) = 511224 Test 025 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1514,60 +1514,60 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.378349 -The maximum resident set size (KB) = 515228 +The total amount of wall time = 138.895893 +The maximum resident set size (KB) = 512452 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.167538 -The maximum resident set size (KB) = 670340 +The total amount of wall time = 327.751200 +The maximum resident set size (KB) = 671172 Test 027 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 533.791359 -The maximum resident set size (KB) = 616656 +The total amount of wall time = 535.047562 +The maximum resident set size (KB) = 611248 Test 028 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 585.813094 -The maximum resident set size (KB) = 1068520 +The total amount of wall time = 571.151709 +The maximum resident set size (KB) = 1069796 Test 029 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1614,46 +1614,46 @@ Checking test 030 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 534.612149 -The maximum resident set size (KB) = 1167744 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 510.266722 +The maximum resident set size (KB) = 1161948 Test 030 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1664,28 +1664,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 100.423070 -The maximum resident set size (KB) = 518808 +The total amount of wall time = 93.738118 +The maximum resident set size (KB) = 519336 Test 031 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 51.330399 -The maximum resident set size (KB) = 347588 +The total amount of wall time = 50.256801 +The maximum resident set size (KB) = 349344 Test 032 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.151875 -The maximum resident set size (KB) = 519520 +The total amount of wall time = 86.679725 +The maximum resident set size (KB) = 516084 Test 033 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 147.723110 -The maximum resident set size (KB) = 516324 +The total amount of wall time = 137.849482 +The maximum resident set size (KB) = 515296 Test 034 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1740,14 +1740,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.744404 -The maximum resident set size (KB) = 512288 +The total amount of wall time = 139.056155 +The maximum resident set size (KB) = 516684 Test 035 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1762,92 +1762,92 @@ Checking test 036 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.158113 -The maximum resident set size (KB) = 1491032 +The total amount of wall time = 188.455936 +The maximum resident set size (KB) = 1493748 Test 036 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 112.211608 -The maximum resident set size (KB) = 705676 +The total amount of wall time = 104.531759 +The maximum resident set size (KB) = 700832 Test 037 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1862,7 +1862,7 @@ Checking test 038 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1894,21 +1894,21 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 194.733266 -The maximum resident set size (KB) = 1495136 +The total amount of wall time = 186.803277 +The maximum resident set size (KB) = 1500064 Test 038 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1940,14 +1940,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 114.654855 -The maximum resident set size (KB) = 670864 +The total amount of wall time = 105.775374 +The maximum resident set size (KB) = 666748 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1958,46 +1958,46 @@ Checking test 040 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 200.024835 -The maximum resident set size (KB) = 1489224 +The total amount of wall time = 189.522946 +The maximum resident set size (KB) = 1487032 Test 040 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2008,46 +2008,46 @@ Checking test 041 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.200003 -The maximum resident set size (KB) = 1566688 +The total amount of wall time = 166.392148 +The maximum resident set size (KB) = 1580280 Test 041 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 331.002046 -The maximum resident set size (KB) = 1490820 +The total amount of wall time = 326.889555 +The maximum resident set size (KB) = 1497596 Test 042 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2088,46 +2088,46 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.393601 -The maximum resident set size (KB) = 1547780 +The total amount of wall time = 245.119170 +The maximum resident set size (KB) = 1547968 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2142,46 +2142,46 @@ Checking test 044 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.826869 -The maximum resident set size (KB) = 1501460 +The total amount of wall time = 187.500273 +The maximum resident set size (KB) = 1502564 Test 044 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2196,78 +2196,78 @@ Checking test 045 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 222.739715 -The maximum resident set size (KB) = 1504564 - -Test 045 merra2_thompson_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_intel -Checking test 046 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 214.395986 +The maximum resident set size (KB) = 1494140 + +Test 045 merra2_thompson_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_intel +Checking test 046 regional_control_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.653110 -The maximum resident set size (KB) = 868464 +The total amount of wall time = 292.254332 +The maximum resident set size (KB) = 874092 Test 046 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 173.818546 -The maximum resident set size (KB) = 861924 +The total amount of wall time = 170.979050 +The maximum resident set size (KB) = 864828 Test 047 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2278,28 +2278,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.459574 -The maximum resident set size (KB) = 867516 +The total amount of wall time = 295.000342 +The maximum resident set size (KB) = 867508 Test 048 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.904864 -The maximum resident set size (KB) = 863316 +The total amount of wall time = 170.509306 +The maximum resident set size (KB) = 863436 Test 049 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2310,14 +2310,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.131528 -The maximum resident set size (KB) = 865060 +The total amount of wall time = 308.111891 +The maximum resident set size (KB) = 865564 Test 050 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2328,43 +2328,43 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.066158 -The maximum resident set size (KB) = 907068 +The total amount of wall time = 180.682720 +The maximum resident set size (KB) = 908548 Test 051 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 293.418018 -The maximum resident set size (KB) = 1142380 +The total amount of wall time = 290.615528 +The maximum resident set size (KB) = 1141384 Test 052 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 306.190991 -The maximum resident set size (KB) = 862540 +The total amount of wall time = 289.764962 +The maximum resident set size (KB) = 867252 Test 053 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2375,14 +2375,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 300.856873 -The maximum resident set size (KB) = 870880 +The total amount of wall time = 291.834925 +The maximum resident set size (KB) = 868188 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2393,14 +2393,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.705786 -The maximum resident set size (KB) = 621728 +The total amount of wall time = 372.505243 +The maximum resident set size (KB) = 621312 Test 055 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2415,46 +2415,46 @@ Checking test 056 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.601949 -The maximum resident set size (KB) = 898120 +The total amount of wall time = 408.260604 +The maximum resident set size (KB) = 898564 Test 056 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2465,14 +2465,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 259.043835 -The maximum resident set size (KB) = 1003800 +The total amount of wall time = 249.010738 +The maximum resident set size (KB) = 1001968 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2487,46 +2487,46 @@ Checking test 058 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 425.311931 -The maximum resident set size (KB) = 891232 +The total amount of wall time = 420.486419 +The maximum resident set size (KB) = 892016 Test 058 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2541,92 +2541,92 @@ Checking test 059 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.269745 -The maximum resident set size (KB) = 980452 +The total amount of wall time = 366.705181 +The maximum resident set size (KB) = 976304 Test 059 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.761522 -The maximum resident set size (KB) = 808820 +The total amount of wall time = 210.104897 +The maximum resident set size (KB) = 806672 Test 060 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2641,46 +2641,46 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.634312 -The maximum resident set size (KB) = 895840 +The total amount of wall time = 409.897846 +The maximum resident set size (KB) = 894900 Test 061 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2695,92 +2695,92 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.387895 -The maximum resident set size (KB) = 896200 +The total amount of wall time = 422.507779 +The maximum resident set size (KB) = 890880 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.744917 -The maximum resident set size (KB) = 817512 +The total amount of wall time = 302.409825 +The maximum resident set size (KB) = 816132 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2795,46 +2795,46 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 401.508256 -The maximum resident set size (KB) = 892112 +The total amount of wall time = 401.697480 +The maximum resident set size (KB) = 890740 Test 064 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2849,14 +2849,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.400557 -The maximum resident set size (KB) = 578440 +The total amount of wall time = 472.335974 +The maximum resident set size (KB) = 579392 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2871,14 +2871,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 467.033585 -The maximum resident set size (KB) = 573736 +The total amount of wall time = 456.153236 +The maximum resident set size (KB) = 569456 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_gf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2893,46 +2893,46 @@ Checking test 067 hrrr_gf_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 421.531415 -The maximum resident set size (KB) = 891616 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 410.615522 +The maximum resident set size (KB) = 890420 Test 067 hrrr_gf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_c3_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2947,46 +2947,46 @@ Checking test 068 hrrr_c3_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 422.322560 -The maximum resident set size (KB) = 891228 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 409.280928 +The maximum resident set size (KB) = 897356 Test 068 hrrr_c3_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2997,14 +2997,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.985463 -The maximum resident set size (KB) = 579620 +The total amount of wall time = 349.893842 +The maximum resident set size (KB) = 582068 Test 069 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3015,14 +3015,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.232547 -The maximum resident set size (KB) = 577328 +The total amount of wall time = 345.799667 +The maximum resident set size (KB) = 583064 Test 070 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3033,26 +3033,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.435893 -The maximum resident set size (KB) = 550320 +The total amount of wall time = 185.377312 +The maximum resident set size (KB) = 554708 Test 071 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.003061 -The maximum resident set size (KB) = 331148 +The total amount of wall time = 119.969578 +The maximum resident set size (KB) = 331032 Test 072 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3067,46 +3067,46 @@ Checking test 073 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.271403 -The maximum resident set size (KB) = 1494480 +The total amount of wall time = 181.722952 +The maximum resident set size (KB) = 1494668 Test 073 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.947291 -The maximum resident set size (KB) = 865524 +The total amount of wall time = 289.421722 +The maximum resident set size (KB) = 864256 Test 074 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3151,348 +3151,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 163.432200 -The maximum resident set size (KB) = 673096 +The total amount of wall time = 159.730901 +The maximum resident set size (KB) = 671408 Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.526695 -The maximum resident set size (KB) = 676240 +The total amount of wall time = 159.544051 +The maximum resident set size (KB) = 674048 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.327790 -The maximum resident set size (KB) = 684148 +The total amount of wall time = 179.504912 +The maximum resident set size (KB) = 680976 Test 077 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.187616 -The maximum resident set size (KB) = 678468 +The total amount of wall time = 162.979609 +The maximum resident set size (KB) = 677772 Test 078 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.519339 -The maximum resident set size (KB) = 717320 +The total amount of wall time = 260.543473 +The maximum resident set size (KB) = 715020 Test 079 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.301010 -The maximum resident set size (KB) = 715644 +The total amount of wall time = 257.139889 +The maximum resident set size (KB) = 718108 Test 080 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.715132 -The maximum resident set size (KB) = 688484 +The total amount of wall time = 162.989371 +The maximum resident set size (KB) = 693200 Test 081 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.895687 -The maximum resident set size (KB) = 735864 +The total amount of wall time = 164.753094 +The maximum resident set size (KB) = 732344 Test 082 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 191.793067 -The maximum resident set size (KB) = 1508112 +The total amount of wall time = 192.953889 +The maximum resident set size (KB) = 1511140 Test 083 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1044.233499 -The maximum resident set size (KB) = 887592 +The total amount of wall time = 1049.196290 +The maximum resident set size (KB) = 890652 Test 084 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.109564 -The maximum resident set size (KB) = 1051884 +The total amount of wall time = 301.409352 +The maximum resident set size (KB) = 1050868 Test 085 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.899206 -The maximum resident set size (KB) = 1052544 +The total amount of wall time = 292.657726 +The maximum resident set size (KB) = 1053552 Test 086 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.607081 -The maximum resident set size (KB) = 1054564 +The total amount of wall time = 300.802679 +The maximum resident set size (KB) = 1052124 Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.928808 -The maximum resident set size (KB) = 1135632 +The total amount of wall time = 311.771192 +The maximum resident set size (KB) = 1138096 Test 088 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.245281 -The maximum resident set size (KB) = 1050168 +The total amount of wall time = 305.851700 +The maximum resident set size (KB) = 1055520 Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.020380 -The maximum resident set size (KB) = 1051016 +The total amount of wall time = 307.008986 +The maximum resident set size (KB) = 1054632 Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.343982 -The maximum resident set size (KB) = 1053580 +The total amount of wall time = 303.971823 +The maximum resident set size (KB) = 1057484 Test 091 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.147043 -The maximum resident set size (KB) = 1056168 +The total amount of wall time = 300.752949 +The maximum resident set size (KB) = 1055508 Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.893385 -The maximum resident set size (KB) = 1053812 +The total amount of wall time = 296.812103 +The maximum resident set size (KB) = 1053776 Test 093 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.064427 -The maximum resident set size (KB) = 1054952 +The total amount of wall time = 302.288871 +The maximum resident set size (KB) = 1055964 Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 493.996070 -The maximum resident set size (KB) = 1049916 +The total amount of wall time = 486.309574 +The maximum resident set size (KB) = 1051452 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.171226 -The maximum resident set size (KB) = 1052588 +The total amount of wall time = 295.437187 +The maximum resident set size (KB) = 1050868 Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 355.003337 -The maximum resident set size (KB) = 1055096 +The total amount of wall time = 357.834471 +The maximum resident set size (KB) = 1057372 Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.896903 -The maximum resident set size (KB) = 1052400 +The total amount of wall time = 300.588406 +The maximum resident set size (KB) = 1052032 Test 098 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.841948 -The maximum resident set size (KB) = 354880 +The total amount of wall time = 297.707205 +The maximum resident set size (KB) = 355076 Test 099 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3503,14 +3503,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 277.941808 -The maximum resident set size (KB) = 892492 +The total amount of wall time = 238.878782 +The maximum resident set size (KB) = 891728 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3525,46 +3525,46 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 363.936095 -The maximum resident set size (KB) = 780448 +The total amount of wall time = 347.169861 +The maximum resident set size (KB) = 778356 Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3572,216 +3572,54 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing atmf000.nc .........OK Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 199.817601 -The maximum resident set size (KB) = 776668 - -Test 102 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_qr_dyn32_phy32_intel -Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 187.710561 -The maximum resident set size (KB) = 787092 - -Test 103 hrrr_control_qr_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_2threads_dyn32_phy32_intel -Checking test 104 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 324.129632 -The maximum resident set size (KB) = 831800 - -Test 104 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_2threads_dyn32_phy32_intel -Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 167.746513 -The maximum resident set size (KB) = 827400 + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 186.822844 +The maximum resident set size (KB) = 777240 -Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_decomp_dyn32_phy32_intel -Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_qr_dyn32_phy32_intel +Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3795,7 +3633,7 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3827,88 +3665,250 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 204.805719 -The maximum resident set size (KB) = 777496 +The total amount of wall time = 181.204477 +The maximum resident set size (KB) = 788388 + +Test 103 hrrr_control_qr_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_2threads_dyn32_phy32_intel +Checking test 104 rap_2threads_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 318.581490 +The maximum resident set size (KB) = 832364 + +Test 104 rap_2threads_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_2threads_dyn32_phy32_intel +Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 161.506098 +The maximum resident set size (KB) = 825032 + +Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_decomp_dyn32_phy32_intel +Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 195.530067 +The maximum resident set size (KB) = 776848 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 248.743939 -The maximum resident set size (KB) = 706196 +The total amount of wall time = 252.814356 +The maximum resident set size (KB) = 705988 Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.415038 -The maximum resident set size (KB) = 663416 +The total amount of wall time = 99.008140 +The maximum resident set size (KB) = 662076 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.921154 -The maximum resident set size (KB) = 628244 +The total amount of wall time = 105.107451 +The maximum resident set size (KB) = 629312 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3917,47 +3917,47 @@ Checking test 110 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 135.276631 -The maximum resident set size (KB) = 1054336 +The total amount of wall time = 139.804300 +The maximum resident set size (KB) = 1054348 Test 110 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 79.800624 -The maximum resident set size (KB) = 1059948 +The total amount of wall time = 79.608907 +The maximum resident set size (KB) = 1060476 Test 111 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 101.702406 -The maximum resident set size (KB) = 951884 +The total amount of wall time = 99.083179 +The maximum resident set size (KB) = 955024 Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3972,155 +3972,155 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 235.300713 -The maximum resident set size (KB) = 809224 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 236.148972 +The maximum resident set size (KB) = 809036 Test 113 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.056668 -The maximum resident set size (KB) = 938216 +The total amount of wall time = 300.271016 +The maximum resident set size (KB) = 938208 Test 114 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.657937 -The maximum resident set size (KB) = 937924 +The total amount of wall time = 300.489862 +The maximum resident set size (KB) = 936300 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 900.761722 -The maximum resident set size (KB) = 1089512 +The total amount of wall time = 918.480533 +The maximum resident set size (KB) = 1089620 Test 116 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 523.228482 -The maximum resident set size (KB) = 1096028 +The total amount of wall time = 533.705284 +The maximum resident set size (KB) = 1093372 Test 117 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 907.220882 -The maximum resident set size (KB) = 1159064 +The total amount of wall time = 918.922824 +The maximum resident set size (KB) = 1156784 Test 118 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.068979 -The maximum resident set size (KB) = 958336 +The total amount of wall time = 312.674975 +The maximum resident set size (KB) = 961000 Test 119 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 274.135650 -The maximum resident set size (KB) = 1117276 +The total amount of wall time = 270.544647 +The maximum resident set size (KB) = 1119032 Test 120 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 311.275705 -The maximum resident set size (KB) = 1480820 +The total amount of wall time = 314.381631 +The maximum resident set size (KB) = 1476260 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 404.278468 -The maximum resident set size (KB) = 1094760 +The total amount of wall time = 400.730496 +The maximum resident set size (KB) = 1104748 Test 122 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4145,14 +4145,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 726.900098 -The maximum resident set size (KB) = 1185840 +The total amount of wall time = 718.003713 +The maximum resident set size (KB) = 1182500 Test 123 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4163,51 +4163,51 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 905.384715 -The maximum resident set size (KB) = 1159608 +The total amount of wall time = 907.031081 +The maximum resident set size (KB) = 1159600 Test 124 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_1nest_atm_intel Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 320.798422 -The maximum resident set size (KB) = 534360 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 316.409273 +The maximum resident set size (KB) = 534128 Test 125 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_1nest_atm_qr_intel Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4218,17 +4218,17 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 366.630528 -The maximum resident set size (KB) = 384612 +The total amount of wall time = 345.259205 +The maximum resident set size (KB) = 384676 Test 126 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4237,76 +4237,76 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 377.499597 -The maximum resident set size (KB) = 542916 +The total amount of wall time = 382.665942 +The maximum resident set size (KB) = 542712 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 167.961687 -The maximum resident set size (KB) = 302856 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 165.927259 +The maximum resident set size (KB) = 303568 Test 128 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_1nest_atm_qr_intel Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4342,17 +4342,17 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 181.119653 -The maximum resident set size (KB) = 282516 +The total amount of wall time = 179.865828 +The maximum resident set size (KB) = 286660 Test 129 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_multiple_4nests_atm_intel Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,79 +4369,79 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - -The total amount of wall time = 479.322226 -The maximum resident set size (KB) = 380824 + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +The total amount of wall time = 478.235466 +The maximum resident set size (KB) = 375996 Test 130 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_multiple_4nests_atm_qr_intel Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,14 +4459,14 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4514,23 +4514,23 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - -The total amount of wall time = 571.434562 -The maximum resident set size (KB) = 383136 + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +The total amount of wall time = 555.725505 +The maximum resident set size (KB) = 384780 Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_specified_moving_1nest_atm_intel Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,51 +4539,51 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.191513 -The maximum resident set size (KB) = 551308 +The total amount of wall time = 214.174370 +The maximum resident set size (KB) = 547824 Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_intel Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -The total amount of wall time = 203.135962 -The maximum resident set size (KB) = 550576 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 197.077598 +The maximum resident set size (KB) = 549336 Test 133 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4594,17 +4594,17 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 241.379117 -The maximum resident set size (KB) = 419412 +The total amount of wall time = 255.465168 +The maximum resident set size (KB) = 439772 Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4613,42 +4613,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 260.473942 -The maximum resident set size (KB) = 610360 +The total amount of wall time = 260.453030 +The maximum resident set size (KB) = 609220 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.342272 -The maximum resident set size (KB) = 321080 +The total amount of wall time = 83.036623 +The maximum resident set size (KB) = 331212 Test 136 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 840.189683 -The maximum resident set size (KB) = 625032 +The total amount of wall time = 819.302069 +The maximum resident set size (KB) = 600856 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4659,14 +4659,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 508.291471 -The maximum resident set size (KB) = 656720 +The total amount of wall time = 510.313787 +The maximum resident set size (KB) = 661580 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_atmlnd_sbs_intel Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4705,60 +4705,60 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 288.422528 -The maximum resident set size (KB) = 1545644 + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 262.252267 +The maximum resident set size (KB) = 1545184 Test 139 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_intel Checking test 140 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4770,46 +4770,46 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 276.834623 -The maximum resident set size (KB) = 2826960 +The total amount of wall time = 262.801779 +The maximum resident set size (KB) = 2824340 Test 140 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_rad_intel Checking test 141 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4821,46 +4821,46 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.482545 -The maximum resident set size (KB) = 2889416 +The total amount of wall time = 288.454539 +The maximum resident set size (KB) = 2887352 Test 141 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_rad_micro_intel Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4872,46 +4872,46 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.884461 -The maximum resident set size (KB) = 2896420 +The total amount of wall time = 299.067668 +The maximum resident set size (KB) = 2903296 Test 142 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_atmaq_intel Checking test 143 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4920,40 +4920,40 @@ Checking test 143 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 704.179781 -The maximum resident set size (KB) = 5326276 +The total amount of wall time = 718.479588 +The maximum resident set size (KB) = 5322296 Test 143 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86078/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_atmaq_debug_intel Checking test 144 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1374.437443 -The maximum resident set size (KB) = 4830680 +The total amount of wall time = 1376.611481 +The maximum resident set size (KB) = 4832156 Test 144 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Sep 20 13:42:31 UTC 2023 -Elapsed time: 01h:22m:40s. Have a nice day! +Thu Sep 21 15:19:07 UTC 2023 +Elapsed time: 01h:12m:45s. Have a nice day! From f7a94ce38a7bdabbb7a3d4f7d5bf894d94c7b862 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 26 Sep 2023 08:59:27 -0400 Subject: [PATCH 04/10] Update fv3atm io routines to use same type kind for both axes and data variables (#1903) * Update fv3atm io routines to use same type kind for both axes and data variables --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 443 ++ ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 61 + tests/logs/RegressionTests_acorn.log | 1414 +++--- tests/logs/RegressionTests_gaea.log | 4030 ++++++++-------- tests/logs/RegressionTests_hera.log | 2002 ++++---- tests/logs/RegressionTests_hercules.log | 1977 ++++---- tests/logs/RegressionTests_jet.log | 1272 ++--- tests/logs/RegressionTests_orion.log | 4134 ++++++++--------- tests/logs/RegressionTests_wcoss2.log | 1220 ++--- 12 files changed, 8539 insertions(+), 8042 deletions(-) create mode 100644 tests/logs/OpnReqTests_control_p8_hera.log create mode 100644 tests/logs/OpnReqTests_regional_control_hera.log diff --git a/FV3 b/FV3 index bbc5bf849c..3b4423cde8 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bbc5bf849cab2ff86035bbe706b0c09616bb5838 +Subproject commit 3b4423cde80275355cc088f977f5b36d9b8ae859 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 470f9e9bb1..324b2b52ae 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20230920 +export BL_DATE=20230922 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log new file mode 100644 index 0000000000..85364dda4e --- /dev/null +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -0,0 +1,443 @@ +Fri Sep 22 15:38:56 UTC 2023 +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_230078/control_p8_gnu_bit_base +Checking test bit_base control_p8_gnu results .... +Moving baseline bit_base control_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 296.773611 + 0: The maximum resident set size (KB) = 1292260 + +Test bit_base control_p8_gnu 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_230078/control_p8_gnu_dbg_base +Checking test dbg_base control_p8_gnu results .... +Moving baseline dbg_base control_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 972.674817 + 0: The maximum resident set size (KB) = 1281472 + +Test dbg_base control_p8_gnu 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_230078/control_p8_gnu_dcp +Checking test dcp control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 267.071350 + 0: The maximum resident set size (KB) = 1272756 + +Test dcp control_p8_gnu 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_230078/control_p8_gnu_mpi +Checking test mpi control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 265.533921 + 0: The maximum resident set size (KB) = 1273320 + +Test mpi control_p8_gnu 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_230078/control_p8_gnu_std_base +Checking test std_base control_p8_gnu results .... +Moving baseline std_base control_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 262.828910 + 0: The maximum resident set size (KB) = 1271868 + +Test std_base control_p8_gnu 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_230078/control_p8_gnu_thr +Checking test thr control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 268.095572 + 0: The maximum resident set size (KB) = 1275032 + +Test thr control_p8_gnu 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_75937/control_p8_gnu_rst +Checking test rst control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 260.074955 + 0: The maximum resident set size (KB) = 1273672 + +Test rst control_p8_gnu 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_75937/control_p8_gnu_std_base +Checking test std_base control_p8_gnu results .... +Moving baseline std_base control_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 265.183430 + 0: The maximum resident set size (KB) = 1275120 + +Test std_base control_p8_gnu PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Fri Sep 22 17:34:17 UTC 2023 +Elapsed time: 00h:17m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 22ca532296..e6fc7f3b3c 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Tue Sep 19 22:01:49 UTC 2023 +Fri Sep 22 16:13:42 UTC 2023 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_13102/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_67539/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu 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 = 1354.435076 - 0: The maximum resident set size (KB) = 1413228 + 0: The total amount of wall time = 1335.447978 + 0: The maximum resident set size (KB) = 1415044 Test dbg_base cpld_control_nowave_noaero_p8_gnu 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_13102/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_67539/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 405.589353 - 0: The maximum resident set size (KB) = 1405108 + 0: The total amount of wall time = 401.479045 + 0: The maximum resident set size (KB) = 1401856 Test rst cpld_control_nowave_noaero_p8_gnu 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_13102/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_67539/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 403.967698 - 0: The maximum resident set size (KB) = 1401188 + 0: The total amount of wall time = 410.762528 + 0: The maximum resident set size (KB) = 1402244 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Tue Sep 19 22:51:07 UTC 2023 -Elapsed time: 00h:49m:19s. Have a nice day! +Fri Sep 22 17:14:33 UTC 2023 +Elapsed time: 01h:00m:52s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log new file mode 100644 index 0000000000..d02e63cb6a --- /dev/null +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -0,0 +1,61 @@ +Fri Sep 22 16:14:55 UTC 2023 +Start Operation Requirement Test + + +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_307172/regional_control_gnu_dcp +Checking test dcp regional_control_gnu results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 515.053146 + 0: The maximum resident set size (KB) = 811988 + +Test dcp regional_control_gnu 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_307172/regional_control_gnu_std_base +Checking test std_base regional_control_gnu results .... +Moving baseline std_base regional_control_gnu files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 516.722431 + 0: The maximum resident set size (KB) = 807528 + +Test std_base regional_control_gnu 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_307172/regional_control_gnu_thr +Checking test thr regional_control_gnu results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 514.077266 + 0: The maximum resident set size (KB) = 806896 + +Test thr regional_control_gnu PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Fri Sep 22 16:57:28 UTC 2023 +Elapsed time: 00h:42m:33s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index bc22759307..4db3653b6a 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Thu Sep 21 14:17:11 UTC 2023 +Mon Sep 25 17:39:13 UTC 2023 Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 3b1edf5180ab35eea2c4855d6b1fc035e021be3b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 529 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 295 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 709 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 845 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1196 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 726 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 638 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 924 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 198 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 407 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 257 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 570 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 243 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 616 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 1010 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 857 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 583 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 684 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1052 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 571 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1205 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1600 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1066 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 372 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 470 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 482 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1912 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 511 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 664 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 847 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 498 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 785 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 516 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 739 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 541 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 1587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1182 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 882 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 969 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 565 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1509 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +114,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.511075 -The maximum resident set size (KB) = 2966340 +The total amount of wall time = 323.185193 +The maximum resident set size (KB) = 2969472 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +185,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 242.933103 -The maximum resident set size (KB) = 1564644 +The total amount of wall time = 243.087446 +The maximum resident set size (KB) = 1566284 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +257,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.566654 -The maximum resident set size (KB) = 2996472 +The total amount of wall time = 373.590807 +The maximum resident set size (KB) = 2996456 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +317,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 218.672511 -The maximum resident set size (KB) = 3058860 +The total amount of wall time = 219.294629 +The maximum resident set size (KB) = 3055832 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +389,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.372205 -The maximum resident set size (KB) = 3007572 +The total amount of wall time = 375.830979 +The maximum resident set size (KB) = 3009864 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 223.119378 -The maximum resident set size (KB) = 2899888 +The total amount of wall time = 223.011057 +The maximum resident set size (KB) = 2894908 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +509,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.514169 -The maximum resident set size (KB) = 3302436 +The total amount of wall time = 332.431353 +The maximum resident set size (KB) = 3301692 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +569,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.223944 -The maximum resident set size (KB) = 2993996 +The total amount of wall time = 368.962558 +The maximum resident set size (KB) = 2995132 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +629,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 309.651372 -The maximum resident set size (KB) = 2928688 +The total amount of wall time = 310.858997 +The maximum resident set size (KB) = 2929484 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +701,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.204259 -The maximum resident set size (KB) = 2998560 +The total amount of wall time = 373.788700 +The maximum resident set size (KB) = 3000440 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 271.453945 -The maximum resident set size (KB) = 1575520 +The total amount of wall time = 271.789593 +The maximum resident set size (KB) = 1575936 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 286.994947 -The maximum resident set size (KB) = 1640768 +The total amount of wall time = 286.443257 +The maximum resident set size (KB) = 1632972 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 286.998719 -The maximum resident set size (KB) = 1641320 +The total amount of wall time = 287.897485 +The maximum resident set size (KB) = 1643940 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 427.079344 -The maximum resident set size (KB) = 2646696 +The total amount of wall time = 426.834813 +The maximum resident set size (KB) = 2650744 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.814832 -The maximum resident set size (KB) = 2997008 +The total amount of wall time = 366.508530 +The maximum resident set size (KB) = 2995840 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.121459 -The maximum resident set size (KB) = 565912 +The total amount of wall time = 212.272762 +The maximum resident set size (KB) = 569108 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.838275 -The maximum resident set size (KB) = 515280 +The total amount of wall time = 129.123130 +The maximum resident set size (KB) = 514408 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.262834 -The maximum resident set size (KB) = 526112 +The total amount of wall time = 134.600956 +The maximum resident set size (KB) = 522836 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.337762 -The maximum resident set size (KB) = 514888 +The total amount of wall time = 130.477117 +The maximum resident set size (KB) = 521232 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,14 +1149,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.524357 -The maximum resident set size (KB) = 517972 +The total amount of wall time = 133.611918 +The maximum resident set size (KB) = 516672 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.478248 -The maximum resident set size (KB) = 672824 +The total amount of wall time = 325.834782 +The maximum resident set size (KB) = 672268 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 524.809062 -The maximum resident set size (KB) = 619360 +The total amount of wall time = 524.999175 +The maximum resident set size (KB) = 622092 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 559.553592 -The maximum resident set size (KB) = 1068080 +The total amount of wall time = 557.665458 +The maximum resident set size (KB) = 1069584 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 492.533058 -The maximum resident set size (KB) = 1174496 +The total amount of wall time = 488.973949 +The maximum resident set size (KB) = 1168452 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.896230 -The maximum resident set size (KB) = 524016 +The total amount of wall time = 87.785686 +The maximum resident set size (KB) = 521972 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.407841 -The maximum resident set size (KB) = 352052 +The total amount of wall time = 48.199456 +The maximum resident set size (KB) = 352732 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.811239 -The maximum resident set size (KB) = 519964 +The total amount of wall time = 82.465731 +The maximum resident set size (KB) = 524176 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.769011 -The maximum resident set size (KB) = 517512 +The total amount of wall time = 132.267105 +The maximum resident set size (KB) = 520184 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.761434 -The maximum resident set size (KB) = 515596 +The total amount of wall time = 132.241702 +The maximum resident set size (KB) = 516784 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.614130 -The maximum resident set size (KB) = 1498872 +The total amount of wall time = 169.623168 +The maximum resident set size (KB) = 1486772 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1475,14 +1475,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 91.998455 -The maximum resident set size (KB) = 703368 +The total amount of wall time = 96.855750 +The maximum resident set size (KB) = 702888 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 169.615894 -The maximum resident set size (KB) = 1504100 +The total amount of wall time = 169.155012 +The maximum resident set size (KB) = 1506736 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1575,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 93.090505 -The maximum resident set size (KB) = 672368 +The total amount of wall time = 97.657779 +The maximum resident set size (KB) = 674692 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.407905 -The maximum resident set size (KB) = 1488976 +The total amount of wall time = 172.837543 +The maximum resident set size (KB) = 1489192 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 148.256477 -The maximum resident set size (KB) = 1574844 +The total amount of wall time = 146.270709 +The maximum resident set size (KB) = 1577988 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 308.168593 -The maximum resident set size (KB) = 1501340 +The total amount of wall time = 306.987398 +The maximum resident set size (KB) = 1498644 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 226.057666 -The maximum resident set size (KB) = 1548232 +The total amount of wall time = 224.493041 +The maximum resident set size (KB) = 1551968 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.557943 -The maximum resident set size (KB) = 1496756 +The total amount of wall time = 171.086593 +The maximum resident set size (KB) = 1491812 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,14 +1863,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 193.838653 -The maximum resident set size (KB) = 1503820 +The total amount of wall time = 193.558837 +The maximum resident set size (KB) = 1497428 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.550173 -The maximum resident set size (KB) = 880556 +The total amount of wall time = 276.556402 +The maximum resident set size (KB) = 874056 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 146.782376 -The maximum resident set size (KB) = 868472 +The total amount of wall time = 147.467861 +The maximum resident set size (KB) = 865916 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.988486 -The maximum resident set size (KB) = 869536 +The total amount of wall time = 276.070886 +The maximum resident set size (KB) = 872444 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 148.548779 -The maximum resident set size (KB) = 864560 +The total amount of wall time = 147.286499 +The maximum resident set size (KB) = 866376 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.787685 -The maximum resident set size (KB) = 871224 +The total amount of wall time = 293.572162 +The maximum resident set size (KB) = 867276 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.905438 -The maximum resident set size (KB) = 909864 +The total amount of wall time = 162.885241 +The maximum resident set size (KB) = 916008 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1978,14 +1978,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 273.710398 -The maximum resident set size (KB) = 1142880 +The total amount of wall time = 275.571983 +The maximum resident set size (KB) = 1142636 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.106801 -The maximum resident set size (KB) = 875648 +The total amount of wall time = 278.379794 +The maximum resident set size (KB) = 872552 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 353.442441 -The maximum resident set size (KB) = 624284 +The total amount of wall time = 353.995194 +The maximum resident set size (KB) = 624372 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 307.630073 -The maximum resident set size (KB) = 873152 +The total amount of wall time = 310.207726 +The maximum resident set size (KB) = 875412 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.804311 -The maximum resident set size (KB) = 868416 +The total amount of wall time = 322.632438 +The maximum resident set size (KB) = 872308 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.129767 -The maximum resident set size (KB) = 913312 +The total amount of wall time = 183.958173 +The maximum resident set size (KB) = 912120 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 401.388252 -The maximum resident set size (KB) = 897864 +The total amount of wall time = 403.483082 +The maximum resident set size (KB) = 901648 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.372690 -The maximum resident set size (KB) = 1003144 +The total amount of wall time = 232.193837 +The maximum resident set size (KB) = 1002824 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2194,14 +2194,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.242867 -The maximum resident set size (KB) = 900952 +The total amount of wall time = 416.732725 +The maximum resident set size (KB) = 902316 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 363.409065 -The maximum resident set size (KB) = 982288 +The total amount of wall time = 363.077420 +The maximum resident set size (KB) = 982732 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2294,14 +2294,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.798155 -The maximum resident set size (KB) = 813648 +The total amount of wall time = 204.907846 +The maximum resident set size (KB) = 808368 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2348,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.369438 -The maximum resident set size (KB) = 904708 +The total amount of wall time = 402.258511 +The maximum resident set size (KB) = 899128 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.469913 -The maximum resident set size (KB) = 901732 +The total amount of wall time = 417.373076 +The maximum resident set size (KB) = 897980 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.547787 -The maximum resident set size (KB) = 819384 +The total amount of wall time = 298.288003 +The maximum resident set size (KB) = 820428 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2502,14 +2502,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 388.107749 -The maximum resident set size (KB) = 897900 +The total amount of wall time = 385.913390 +The maximum resident set size (KB) = 901092 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 384.621083 -The maximum resident set size (KB) = 909684 +The total amount of wall time = 384.963962 +The maximum resident set size (KB) = 908612 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2610,14 +2610,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 397.881056 -The maximum resident set size (KB) = 896696 +The total amount of wall time = 397.479156 +The maximum resident set size (KB) = 900000 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2664,42 +2664,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.956078 -The maximum resident set size (KB) = 974364 +The total amount of wall time = 344.378086 +The maximum resident set size (KB) = 971788 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 285.779138 -The maximum resident set size (KB) = 769208 +The total amount of wall time = 286.137042 +The maximum resident set size (KB) = 770316 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 289.009642 -The maximum resident set size (KB) = 677364 +The total amount of wall time = 288.755963 +The maximum resident set size (KB) = 678324 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2746,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 395.276012 -The maximum resident set size (KB) = 901072 +The total amount of wall time = 396.375312 +The maximum resident set size (KB) = 896868 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 465.648625 -The maximum resident set size (KB) = 584264 +The total amount of wall time = 464.654284 +The maximum resident set size (KB) = 585440 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 450.374661 -The maximum resident set size (KB) = 578184 +The total amount of wall time = 450.489832 +The maximum resident set size (KB) = 576040 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_gf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_gf_intel Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 069 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.915958 -The maximum resident set size (KB) = 898612 +The total amount of wall time = 403.444021 +The maximum resident set size (KB) = 899716 Test 069 hrrr_gf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_c3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_c3_intel Checking test 070 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 070 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.044085 -The maximum resident set size (KB) = 899876 +The total amount of wall time = 402.698693 +The maximum resident set size (KB) = 898648 Test 070 hrrr_c3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmg_intel Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2916,14 +2916,14 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 334.511408 -The maximum resident set size (KB) = 585956 +The total amount of wall time = 332.819888 +The maximum resident set size (KB) = 585500 Test 071 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2934,14 +2934,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 331.864343 -The maximum resident set size (KB) = 586020 +The total amount of wall time = 329.241642 +The maximum resident set size (KB) = 584988 Test 072 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_ras_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2952,26 +2952,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.507902 -The maximum resident set size (KB) = 551176 +The total amount of wall time = 181.433592 +The maximum resident set size (KB) = 551588 Test 073 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.084738 -The maximum resident set size (KB) = 333448 +The total amount of wall time = 117.355051 +The maximum resident set size (KB) = 334408 Test 074 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.416680 -The maximum resident set size (KB) = 1492432 +The total amount of wall time = 164.647565 +The maximum resident set size (KB) = 1501068 Test 075 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 267.914134 -The maximum resident set size (KB) = 872104 +The total amount of wall time = 270.917683 +The maximum resident set size (KB) = 870180 Test 076 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3070,348 +3070,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.269050 -The maximum resident set size (KB) = 678728 +The total amount of wall time = 159.584540 +The maximum resident set size (KB) = 678372 Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.159391 -The maximum resident set size (KB) = 679692 +The total amount of wall time = 156.739432 +The maximum resident set size (KB) = 678968 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.552720 -The maximum resident set size (KB) = 686460 +The total amount of wall time = 177.900227 +The maximum resident set size (KB) = 686088 Test 079 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.335865 -The maximum resident set size (KB) = 685296 +The total amount of wall time = 160.404129 +The maximum resident set size (KB) = 686028 Test 080 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.591935 -The maximum resident set size (KB) = 717652 +The total amount of wall time = 248.886068 +The maximum resident set size (KB) = 717028 Test 081 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 245.477622 -The maximum resident set size (KB) = 722080 +The total amount of wall time = 245.712465 +The maximum resident set size (KB) = 723136 Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.085638 -The maximum resident set size (KB) = 700816 +The total amount of wall time = 162.347094 +The maximum resident set size (KB) = 696432 Test 083 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.801543 -The maximum resident set size (KB) = 739884 +The total amount of wall time = 161.403723 +The maximum resident set size (KB) = 739760 Test 084 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.910876 -The maximum resident set size (KB) = 1517148 +The total amount of wall time = 181.271098 +The maximum resident set size (KB) = 1512556 Test 085 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1043.527607 -The maximum resident set size (KB) = 893284 +The total amount of wall time = 1040.868224 +The maximum resident set size (KB) = 896416 Test 086 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.572668 -The maximum resident set size (KB) = 1056224 +The total amount of wall time = 296.084862 +The maximum resident set size (KB) = 1060672 Test 087 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.108754 -The maximum resident set size (KB) = 1051548 +The total amount of wall time = 290.411725 +The maximum resident set size (KB) = 1057404 Test 088 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.793774 -The maximum resident set size (KB) = 1063148 +The total amount of wall time = 295.922320 +The maximum resident set size (KB) = 1056924 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.726499 -The maximum resident set size (KB) = 1140020 +The total amount of wall time = 307.120220 +The maximum resident set size (KB) = 1139908 Test 090 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.877168 -The maximum resident set size (KB) = 1056536 +The total amount of wall time = 301.841569 +The maximum resident set size (KB) = 1056904 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.845583 -The maximum resident set size (KB) = 1059964 +The total amount of wall time = 302.616143 +The maximum resident set size (KB) = 1061408 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.316966 -The maximum resident set size (KB) = 1069876 +The total amount of wall time = 298.078177 +The maximum resident set size (KB) = 1059436 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.079363 -The maximum resident set size (KB) = 1060612 +The total amount of wall time = 295.472162 +The maximum resident set size (KB) = 1066880 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.396251 -The maximum resident set size (KB) = 1059368 +The total amount of wall time = 289.490761 +The maximum resident set size (KB) = 1057344 Test 095 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.687240 -The maximum resident set size (KB) = 1056936 +The total amount of wall time = 296.493681 +The maximum resident set size (KB) = 1058408 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.809468 -The maximum resident set size (KB) = 1054928 +The total amount of wall time = 486.739533 +The maximum resident set size (KB) = 1053996 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.902688 -The maximum resident set size (KB) = 1059180 +The total amount of wall time = 290.861652 +The maximum resident set size (KB) = 1056344 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.684469 -The maximum resident set size (KB) = 1062412 +The total amount of wall time = 352.402695 +The maximum resident set size (KB) = 1059968 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.251077 -The maximum resident set size (KB) = 1061168 +The total amount of wall time = 297.806670 +The maximum resident set size (KB) = 1057132 Test 100 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.069157 -The maximum resident set size (KB) = 362124 +The total amount of wall time = 298.520360 +The maximum resident set size (KB) = 360668 Test 101 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 221.116737 -The maximum resident set size (KB) = 893956 +The total amount of wall time = 220.704103 +The maximum resident set size (KB) = 905044 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,14 +3476,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.044399 -The maximum resident set size (KB) = 781964 +The total amount of wall time = 333.034873 +The maximum resident set size (KB) = 778800 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3530,14 +3530,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.517787 -The maximum resident set size (KB) = 772924 +The total amount of wall time = 175.391870 +The maximum resident set size (KB) = 773652 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 174.648143 -The maximum resident set size (KB) = 788200 +The total amount of wall time = 175.046884 +The maximum resident set size (KB) = 790508 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.265128 -The maximum resident set size (KB) = 833532 +The total amount of wall time = 301.418068 +The maximum resident set size (KB) = 843224 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.640097 -The maximum resident set size (KB) = 827352 +The total amount of wall time = 155.291529 +The maximum resident set size (KB) = 833072 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.928769 -The maximum resident set size (KB) = 779832 +The total amount of wall time = 181.415479 +The maximum resident set size (KB) = 775544 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3792,42 +3792,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.077288 -The maximum resident set size (KB) = 710020 +The total amount of wall time = 246.253253 +The maximum resident set size (KB) = 707232 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.248363 -The maximum resident set size (KB) = 671688 +The total amount of wall time = 91.652706 +The maximum resident set size (KB) = 667404 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.547728 -The maximum resident set size (KB) = 632576 +The total amount of wall time = 93.054430 +The maximum resident set size (KB) = 638796 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3843,40 +3843,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 113.757383 -The maximum resident set size (KB) = 1062284 +The total amount of wall time = 115.257255 +The maximum resident set size (KB) = 1061200 Test 112 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.374769 -The maximum resident set size (KB) = 1066924 +The total amount of wall time = 56.343489 +The maximum resident set size (KB) = 1073948 Test 113 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.700063 -The maximum resident set size (KB) = 960860 +The total amount of wall time = 70.133160 +The maximum resident set size (KB) = 959392 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3923,123 +3923,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.753642 -The maximum resident set size (KB) = 815408 +The total amount of wall time = 227.381999 +The maximum resident set size (KB) = 811220 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.621388 -The maximum resident set size (KB) = 942824 +The total amount of wall time = 287.390336 +The maximum resident set size (KB) = 946736 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 281.268890 -The maximum resident set size (KB) = 940708 +The total amount of wall time = 279.652947 +The maximum resident set size (KB) = 942552 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 886.865893 -The maximum resident set size (KB) = 1090556 +The total amount of wall time = 884.577051 +The maximum resident set size (KB) = 1090116 Test 118 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 503.213122 -The maximum resident set size (KB) = 1095824 +The total amount of wall time = 509.079543 +The maximum resident set size (KB) = 1098420 Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 876.640587 -The maximum resident set size (KB) = 1163684 +The total amount of wall time = 885.199674 +The maximum resident set size (KB) = 1167224 Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.945968 -The maximum resident set size (KB) = 958128 +The total amount of wall time = 292.407331 +The maximum resident set size (KB) = 962212 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 246.762986 -The maximum resident set size (KB) = 1140816 +The total amount of wall time = 245.564792 +The maximum resident set size (KB) = 1124384 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 284.140794 -The maximum resident set size (KB) = 1479712 +The total amount of wall time = 276.088775 +The maximum resident set size (KB) = 1482748 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4048,14 +4048,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 373.865560 -The maximum resident set size (KB) = 1097220 +The total amount of wall time = 374.666118 +The maximum resident set size (KB) = 1107144 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 689.424221 -The maximum resident set size (KB) = 1197624 +The total amount of wall time = 692.145563 +The maximum resident set size (KB) = 1199124 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 875.942459 -The maximum resident set size (KB) = 1169928 +The total amount of wall time = 881.239240 +The maximum resident set size (KB) = 1167700 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4111,14 +4111,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 305.592937 -The maximum resident set size (KB) = 540816 +The total amount of wall time = 303.626550 +The maximum resident set size (KB) = 542576 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4140,14 +4140,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 323.410758 -The maximum resident set size (KB) = 388632 +The total amount of wall time = 322.189147 +The maximum resident set size (KB) = 388168 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 369.944454 -The maximum resident set size (KB) = 548440 +The total amount of wall time = 368.670190 +The maximum resident set size (KB) = 549432 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 161.427529 -The maximum resident set size (KB) = 307636 +The total amount of wall time = 159.551704 +The maximum resident set size (KB) = 307400 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4264,14 +4264,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 167.200156 -The maximum resident set size (KB) = 289412 +The total amount of wall time = 165.595593 +The maximum resident set size (KB) = 294304 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 452.209756 -The maximum resident set size (KB) = 375648 +The total amount of wall time = 453.495454 +The maximum resident set size (KB) = 381044 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4442,14 +4442,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 493.484458 -The maximum resident set size (KB) = 388256 +The total amount of wall time = 493.248075 +The maximum resident set size (KB) = 386488 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,14 +4458,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 203.845443 -The maximum resident set size (KB) = 555828 +The total amount of wall time = 203.022724 +The maximum resident set size (KB) = 556304 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4487,14 +4487,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 189.866719 -The maximum resident set size (KB) = 552336 +The total amount of wall time = 189.304254 +The maximum resident set size (KB) = 554836 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4516,14 +4516,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.093377 -The maximum resident set size (KB) = 422856 +The total amount of wall time = 210.598697 +The maximum resident set size (KB) = 425516 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4532,42 +4532,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 244.810253 -The maximum resident set size (KB) = 619340 +The total amount of wall time = 244.280410 +The maximum resident set size (KB) = 616936 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 82.991302 -The maximum resident set size (KB) = 328272 +The total amount of wall time = 81.055754 +The maximum resident set size (KB) = 335540 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 799.913784 -The maximum resident set size (KB) = 605796 +The total amount of wall time = 795.729363 +The maximum resident set size (KB) = 628568 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 494.260386 -The maximum resident set size (KB) = 663348 +The total amount of wall time = 495.529671 +The maximum resident set size (KB) = 662480 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 344.899369 -The maximum resident set size (KB) = 1096568 +The total amount of wall time = 343.399984 +The maximum resident set size (KB) = 1085932 Test 141 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4608,131 +4608,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 345.190062 -The maximum resident set size (KB) = 1074276 +The total amount of wall time = 347.438559 +The maximum resident set size (KB) = 1072920 Test 142 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 946.876696 -The maximum resident set size (KB) = 885928 +The total amount of wall time = 947.577297 +The maximum resident set size (KB) = 823284 Test 143 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.194938 -The maximum resident set size (KB) = 728292 +The total amount of wall time = 143.364494 +The maximum resident set size (KB) = 727812 Test 144 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 89.842906 -The maximum resident set size (KB) = 728068 +The total amount of wall time = 91.003430 +The maximum resident set size (KB) = 728596 Test 145 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.341755 -The maximum resident set size (KB) = 619876 +The total amount of wall time = 134.450087 +The maximum resident set size (KB) = 622556 Test 146 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.122202 -The maximum resident set size (KB) = 620108 +The total amount of wall time = 136.733819 +The maximum resident set size (KB) = 620020 Test 147 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.275208 -The maximum resident set size (KB) = 620312 +The total amount of wall time = 137.666965 +The maximum resident set size (KB) = 619300 Test 148 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.288583 -The maximum resident set size (KB) = 740512 +The total amount of wall time = 143.338465 +The maximum resident set size (KB) = 741840 Test 149 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.686382 -The maximum resident set size (KB) = 738592 +The total amount of wall time = 144.103585 +The maximum resident set size (KB) = 739144 Test 150 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.392125 -The maximum resident set size (KB) = 618908 +The total amount of wall time = 134.231056 +The maximum resident set size (KB) = 619332 Test 151 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4741,14 +4741,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.311613 -The maximum resident set size (KB) = 574504 +The total amount of wall time = 428.447010 +The maximum resident set size (KB) = 583304 Test 152 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4757,64 +4757,64 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.153889 -The maximum resident set size (KB) = 560564 +The total amount of wall time = 425.008280 +The maximum resident set size (KB) = 570560 Test 153 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.484985 -The maximum resident set size (KB) = 742072 +The total amount of wall time = 142.746362 +The maximum resident set size (KB) = 739348 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 257.468792 -The maximum resident set size (KB) = 1982240 +The total amount of wall time = 257.913826 +The maximum resident set size (KB) = 1984908 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 258.477296 -The maximum resident set size (KB) = 1982952 +The total amount of wall time = 258.311550 +The maximum resident set size (KB) = 1987712 Test 156 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_cfsr_faster_intel Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.920955 -The maximum resident set size (KB) = 741984 +The total amount of wall time = 143.685911 +The maximum resident set size (KB) = 740180 Test 157 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_lnd_gswp3_intel Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4823,14 +4823,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.735334 -The maximum resident set size (KB) = 229824 +The total amount of wall time = 22.676159 +The maximum resident set size (KB) = 229192 Test 158 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_lnd_gswp3_rst_intel Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4839,14 +4839,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.222056 -The maximum resident set size (KB) = 227376 +The total amount of wall time = 26.363988 +The maximum resident set size (KB) = 223640 Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_atmlnd_sbs_intel Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4931,14 +4931,14 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 230.369867 -The maximum resident set size (KB) = 1552744 +The total amount of wall time = 228.992957 +The maximum resident set size (KB) = 1552388 Test 160 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmwav_control_noaero_p8_intel Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 104.309053 -The maximum resident set size (KB) = 1528772 +The total amount of wall time = 101.221474 +The maximum resident set size (KB) = 1529736 Test 161 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_atmwav_intel Checking test 162 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.762355 -The maximum resident set size (KB) = 545880 +The total amount of wall time = 89.592697 +The maximum resident set size (KB) = 543200 Test 162 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_intel Checking test 163 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.068795 -The maximum resident set size (KB) = 2831924 +The total amount of wall time = 242.306585 +The maximum resident set size (KB) = 2833288 Test 163 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_rad_intel Checking test 164 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5134,14 +5134,14 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 282.284228 -The maximum resident set size (KB) = 2892252 +The total amount of wall time = 281.804108 +The maximum resident set size (KB) = 2896760 Test 164 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_rad_micro_intel Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5185,14 +5185,14 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.783494 -The maximum resident set size (KB) = 2901812 +The total amount of wall time = 287.196183 +The maximum resident set size (KB) = 2905932 Test 165 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_atmaq_intel Checking test 166 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5208,14 +5208,14 @@ Checking test 166 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 664.282286 -The maximum resident set size (KB) = 5328276 +The total amount of wall time = 663.453368 +The maximum resident set size (KB) = 5325400 Test 166 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_32943/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_atmaq_debug_intel Checking test 167 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5229,12 +5229,12 @@ Checking test 167 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1293.324850 -The maximum resident set size (KB) = 4831820 +The total amount of wall time = 1289.313810 +The maximum resident set size (KB) = 4828552 Test 167 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 15:51:06 UTC 2023 -Elapsed time: 01h:33m:56s. Have a nice day! +Mon Sep 25 19:35:49 UTC 2023 +Elapsed time: 01h:56m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 4e0e1e6c84..aa14e74612 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Thu 21 Sep 2023 09:53:42 AM EDT +Sun 24 Sep 2023 10:25:33 AM EDT Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 672 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 792 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 648 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 710 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 672 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 726 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 772 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 700 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 745 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile datm_cdeps_debug_intel elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 242 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 689 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 206 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 845 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 695 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 921 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 644 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 834 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 810 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 310 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 974 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 302 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_faster_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 694 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 203 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1005 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 730 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 823 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 850 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 881 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 304 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1516 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 898 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 298 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1096 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.195043 - 0: The maximum resident set size (KB) = 1568456 + 0: The total amount of wall time = 311.274310 + 0: The maximum resident set size (KB) = 1568720 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.730337 - 0: The maximum resident set size (KB) = 1467036 + 0: The total amount of wall time = 223.355757 + 0: The maximum resident set size (KB) = 1467024 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.386095 - 0: The maximum resident set size (KB) = 1603100 + 0: The total amount of wall time = 356.414975 + 0: The maximum resident set size (KB) = 1602656 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.242832 - 0: The maximum resident set size (KB) = 1472944 + 0: The total amount of wall time = 199.103339 + 0: The maximum resident set size (KB) = 1473084 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.297240 - 0: The maximum resident set size (KB) = 1612916 + 0: The total amount of wall time = 357.801757 + 0: The maximum resident set size (KB) = 1613316 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 238.893354 - 0: The maximum resident set size (KB) = 1307776 + 0: The total amount of wall time = 203.469774 + 0: The maximum resident set size (KB) = 1307728 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.417429 - 0: The maximum resident set size (KB) = 1836636 + 0: The total amount of wall time = 342.624486 + 0: The maximum resident set size (KB) = 1828048 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.042380 - 0: The maximum resident set size (KB) = 1599224 + 0: The total amount of wall time = 355.310114 + 0: The maximum resident set size (KB) = 1599228 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 293.067018 - 0: The maximum resident set size (KB) = 1559048 + 0: The total amount of wall time = 292.523642 + 0: The maximum resident set size (KB) = 1559320 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 620.852728 - 0: The maximum resident set size (KB) = 3068216 + 0: The total amount of wall time = 620.825018 + 0: The maximum resident set size (KB) = 3081764 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.303699 - 0: The maximum resident set size (KB) = 3019064 + 0: The total amount of wall time = 372.520727 + 0: The maximum resident set size (KB) = 2999316 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.090464 - 0: The maximum resident set size (KB) = 1484928 + 0: The total amount of wall time = 264.330676 + 0: The maximum resident set size (KB) = 1485468 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.427044 - 0: The maximum resident set size (KB) = 1521332 + 0: The total amount of wall time = 273.340688 + 0: The maximum resident set size (KB) = 1521264 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 532.344997 - 0: The maximum resident set size (KB) = 1604136 + 0: The total amount of wall time = 531.448801 + 0: The maximum resident set size (KB) = 1604120 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.928110 - 0: The maximum resident set size (KB) = 1504804 + 0: The total amount of wall time = 362.568695 + 0: The maximum resident set size (KB) = 1505048 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.680030 - 0: The maximum resident set size (KB) = 1522152 + 0: The total amount of wall time = 274.868471 + 0: The maximum resident set size (KB) = 1522104 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 599.779370 - 0: The maximum resident set size (KB) = 2591272 + 0: The total amount of wall time = 596.068393 + 0: The maximum resident set size (KB) = 2591340 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.579200 - 0: The maximum resident set size (KB) = 1602812 + 0: The total amount of wall time = 344.080707 + 0: The maximum resident set size (KB) = 1602368 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.128427 - 0: The maximum resident set size (KB) = 496072 + 0: The total amount of wall time = 206.535786 + 0: The maximum resident set size (KB) = 495912 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,21 +1250,21 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.145624 - 0: The maximum resident set size (KB) = 447944 + 0: The total amount of wall time = 136.594872 + 0: The maximum resident set size (KB) = 448032 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.539832 - 0: The maximum resident set size (KB) = 451864 + 0: The total amount of wall time = 152.644691 + 0: The maximum resident set size (KB) = 451828 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.160405 - 0: The maximum resident set size (KB) = 448084 + 0: The total amount of wall time = 139.030164 + 0: The maximum resident set size (KB) = 448060 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,60 +1308,60 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.189969 - 0: The maximum resident set size (KB) = 448276 + 0: The total amount of wall time = 147.882217 + 0: The maximum resident set size (KB) = 448132 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.711128 -0: The maximum resident set size (KB) = 651672 +0: The total amount of wall time = 419.235406 +0: The maximum resident set size (KB) = 651616 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 567.673476 - 0: The maximum resident set size (KB) = 554288 + 0: The total amount of wall time = 566.012735 + 0: The maximum resident set size (KB) = 554384 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1079.969587 - 0: The maximum resident set size (KB) = 946232 + 0: The total amount of wall time = 1095.093998 + 0: The maximum resident set size (KB) = 946308 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1408,46 +1408,46 @@ Checking test 027 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 895.157066 - 0: The maximum resident set size (KB) = 1073720 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 896.875297 + 0: The maximum resident set size (KB) = 1073756 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.992880 - 0: The maximum resident set size (KB) = 454764 + 0: The total amount of wall time = 92.512288 + 0: The maximum resident set size (KB) = 454572 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.253544 - 0: The maximum resident set size (KB) = 269332 + 0: The total amount of wall time = 48.941172 + 0: The maximum resident set size (KB) = 268980 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.210282 - 0: The maximum resident set size (KB) = 452868 + 0: The total amount of wall time = 85.649862 + 0: The maximum resident set size (KB) = 452820 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.999011 - 0: The maximum resident set size (KB) = 448172 + 0: The total amount of wall time = 141.281509 + 0: The maximum resident set size (KB) = 448260 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.936524 - 0: The maximum resident set size (KB) = 448088 + 0: The total amount of wall time = 141.007006 + 0: The maximum resident set size (KB) = 447944 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1556,92 +1556,92 @@ Checking test 033 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.112867 - 0: The maximum resident set size (KB) = 1419844 + 0: The total amount of wall time = 169.384512 + 0: The maximum resident set size (KB) = 1419900 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.392683 - 0: The maximum resident set size (KB) = 623644 + 0: The total amount of wall time = 89.543852 + 0: The maximum resident set size (KB) = 623388 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1656,7 +1656,7 @@ Checking test 035 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1688,21 +1688,21 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.733961 - 0: The maximum resident set size (KB) = 1428912 + 0: The total amount of wall time = 169.615813 + 0: The maximum resident set size (KB) = 1428708 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.498156 - 0: The maximum resident set size (KB) = 596920 + 0: The total amount of wall time = 91.186080 + 0: The maximum resident set size (KB) = 597220 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1752,46 +1752,46 @@ Checking test 037 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.992628 - 0: The maximum resident set size (KB) = 1413756 + 0: The total amount of wall time = 176.535883 + 0: The maximum resident set size (KB) = 1413600 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1802,46 +1802,46 @@ Checking test 038 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.585296 - 0: The maximum resident set size (KB) = 1500776 + 0: The total amount of wall time = 159.818230 + 0: The maximum resident set size (KB) = 1499760 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 328.849717 - 0: The maximum resident set size (KB) = 1420092 + 0: The total amount of wall time = 316.888788 + 0: The maximum resident set size (KB) = 1420100 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1882,46 +1882,46 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.921322 - 0: The maximum resident set size (KB) = 1473388 + 0: The total amount of wall time = 231.647634 + 0: The maximum resident set size (KB) = 1473252 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1936,46 +1936,46 @@ Checking test 041 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.553305 - 0: The maximum resident set size (KB) = 1424736 + 0: The total amount of wall time = 172.922451 + 0: The maximum resident set size (KB) = 1424860 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1990,46 +1990,46 @@ Checking test 042 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.010966 - 0: The maximum resident set size (KB) = 1425368 + 0: The total amount of wall time = 194.704757 + 0: The maximum resident set size (KB) = 1425380 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.986444 - 0: The maximum resident set size (KB) = 805188 + 0: The total amount of wall time = 314.408899 + 0: The maximum resident set size (KB) = 805752 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.152513 - 0: The maximum resident set size (KB) = 802852 + 0: The total amount of wall time = 160.019898 + 0: The maximum resident set size (KB) = 802324 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 323.453606 - 0: The maximum resident set size (KB) = 805800 + 0: The total amount of wall time = 313.828578 + 0: The maximum resident set size (KB) = 805764 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.013649 - 0: The maximum resident set size (KB) = 802872 + 0: The total amount of wall time = 160.294560 + 0: The maximum resident set size (KB) = 802908 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.154338 - 0: The maximum resident set size (KB) = 803372 + 0: The total amount of wall time = 332.056587 + 0: The maximum resident set size (KB) = 803668 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 187.511628 - 0: The maximum resident set size (KB) = 809908 + 0: The total amount of wall time = 181.302922 + 0: The maximum resident set size (KB) = 809768 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.356204 - 0: The maximum resident set size (KB) = 1077644 + 0: The total amount of wall time = 312.524472 + 0: The maximum resident set size (KB) = 1077464 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 320.283139 - 0: The maximum resident set size (KB) = 801080 + 0: The total amount of wall time = 313.387260 + 0: The maximum resident set size (KB) = 801060 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.216817 - 0: The maximum resident set size (KB) = 808864 + 0: The total amount of wall time = 317.640985 + 0: The maximum resident set size (KB) = 809152 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 404.502707 - 0: The maximum resident set size (KB) = 549852 + 0: The total amount of wall time = 403.265372 + 0: The maximum resident set size (KB) = 549776 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2209,46 +2209,46 @@ Checking test 053 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.916086 - 0: The maximum resident set size (KB) = 829480 + 0: The total amount of wall time = 449.194550 + 0: The maximum resident set size (KB) = 833672 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.593584 - 0: The maximum resident set size (KB) = 920812 + 0: The total amount of wall time = 251.308113 + 0: The maximum resident set size (KB) = 920796 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2281,46 +2281,46 @@ Checking test 055 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.559059 - 0: The maximum resident set size (KB) = 824252 + 0: The total amount of wall time = 463.659902 + 0: The maximum resident set size (KB) = 832576 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2335,92 +2335,92 @@ Checking test 056 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.370201 - 0: The maximum resident set size (KB) = 908860 + 0: The total amount of wall time = 426.193397 + 0: The maximum resident set size (KB) = 911320 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.356042 - 0: The maximum resident set size (KB) = 729488 + 0: The total amount of wall time = 227.676883 + 0: The maximum resident set size (KB) = 729156 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2435,46 +2435,46 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.884988 - 0: The maximum resident set size (KB) = 833476 + 0: The total amount of wall time = 449.025169 + 0: The maximum resident set size (KB) = 833480 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2489,92 +2489,92 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.586445 - 0: The maximum resident set size (KB) = 824184 + 0: The total amount of wall time = 463.879217 + 0: The maximum resident set size (KB) = 832320 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.706608 - 0: The maximum resident set size (KB) = 738284 + 0: The total amount of wall time = 334.083671 + 0: The maximum resident set size (KB) = 738476 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2589,46 +2589,46 @@ Checking test 061 hrrr_control_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 430.555119 - 0: The maximum resident set size (KB) = 830820 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 429.545079 + 0: The maximum resident set size (KB) = 830876 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2643,7 +2643,7 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.257173 - 0: The maximum resident set size (KB) = 838428 + 0: The total amount of wall time = 429.377205 + 0: The maximum resident set size (KB) = 838328 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2697,46 +2697,46 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 445.494943 - 0: The maximum resident set size (KB) = 830516 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 445.875343 + 0: The maximum resident set size (KB) = 830532 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,74 +2751,74 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 395.740030 - 0: The maximum resident set size (KB) = 904068 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 396.387315 + 0: The maximum resident set size (KB) = 904280 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.096268 - 0: The maximum resident set size (KB) = 686016 + 0: The total amount of wall time = 321.621999 + 0: The maximum resident set size (KB) = 685960 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.786138 - 0: The maximum resident set size (KB) = 600960 + 0: The total amount of wall time = 324.381036 + 0: The maximum resident set size (KB) = 600872 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2833,46 +2833,46 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.909520 - 0: The maximum resident set size (KB) = 822376 + 0: The total amount of wall time = 440.362837 + 0: The maximum resident set size (KB) = 830480 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 548.475038 - 0: The maximum resident set size (KB) = 504040 + 0: The total amount of wall time = 546.851266 + 0: The maximum resident set size (KB) = 503980 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.935405 - 0: The maximum resident set size (KB) = 499612 + 0: The total amount of wall time = 528.783742 + 0: The maximum resident set size (KB) = 499576 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_gf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_gf_intel Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2931,46 +2931,46 @@ Checking test 070 hrrr_gf_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 450.766870 - 0: The maximum resident set size (KB) = 833044 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 450.407510 + 0: The maximum resident set size (KB) = 824900 Test 070 hrrr_gf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_c3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_c3_intel Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2985,46 +2985,46 @@ Checking test 071 hrrr_c3_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 451.959477 - 0: The maximum resident set size (KB) = 832932 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 448.179409 + 0: The maximum resident set size (KB) = 832964 Test 071 hrrr_c3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.977754 - 0: The maximum resident set size (KB) = 514280 + 0: The total amount of wall time = 361.247987 + 0: The maximum resident set size (KB) = 514224 Test 072 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,26 +3053,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.078217 - 0: The maximum resident set size (KB) = 482644 + 0: The total amount of wall time = 195.097538 + 0: The maximum resident set size (KB) = 482716 Test 073 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.890988 - 0: The maximum resident set size (KB) = 258048 + 0: The total amount of wall time = 121.265116 + 0: The maximum resident set size (KB) = 258032 Test 074 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3087,46 +3087,46 @@ Checking test 075 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.292233 - 0: The maximum resident set size (KB) = 1419716 + 0: The total amount of wall time = 161.097399 + 0: The maximum resident set size (KB) = 1419700 Test 075 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3137,14 +3137,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.561648 - 0: The maximum resident set size (KB) = 805544 + 0: The total amount of wall time = 294.326063 + 0: The maximum resident set size (KB) = 805600 Test 076 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3171,348 +3171,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 154.480633 - 0: The maximum resident set size (KB) = 613096 + 0: The total amount of wall time = 151.265476 + 0: The maximum resident set size (KB) = 613168 Test 077 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.827578 - 0: The maximum resident set size (KB) = 612568 + 0: The total amount of wall time = 161.483921 + 0: The maximum resident set size (KB) = 612592 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.327817 - 0: The maximum resident set size (KB) = 616904 + 0: The total amount of wall time = 170.461014 + 0: The maximum resident set size (KB) = 616920 Test 079 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.676954 - 0: The maximum resident set size (KB) = 615652 + 0: The total amount of wall time = 152.369174 + 0: The maximum resident set size (KB) = 615544 Test 080 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.258054 - 0: The maximum resident set size (KB) = 653028 + 0: The total amount of wall time = 243.386240 + 0: The maximum resident set size (KB) = 653208 Test 081 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.313216 - 0: The maximum resident set size (KB) = 653316 + 0: The total amount of wall time = 238.581325 + 0: The maximum resident set size (KB) = 653344 Test 082 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.291402 - 0: The maximum resident set size (KB) = 625448 + 0: The total amount of wall time = 154.519976 + 0: The maximum resident set size (KB) = 625524 Test 083 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.011005 - 0: The maximum resident set size (KB) = 668088 + 0: The total amount of wall time = 156.472510 + 0: The maximum resident set size (KB) = 667964 Test 084 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.180684 - 0: The maximum resident set size (KB) = 1436764 + 0: The total amount of wall time = 171.393261 + 0: The maximum resident set size (KB) = 1436804 Test 085 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1027.553887 - 0: The maximum resident set size (KB) = 829872 + 0: The total amount of wall time = 1033.227130 + 0: The maximum resident set size (KB) = 829924 Test 086 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.305957 - 0: The maximum resident set size (KB) = 997396 + 0: The total amount of wall time = 280.719541 + 0: The maximum resident set size (KB) = 997556 Test 087 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.375927 - 0: The maximum resident set size (KB) = 994760 + 0: The total amount of wall time = 273.821798 + 0: The maximum resident set size (KB) = 994928 Test 088 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.748493 - 0: The maximum resident set size (KB) = 997452 + 0: The total amount of wall time = 281.111607 + 0: The maximum resident set size (KB) = 997540 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.212944 - 0: The maximum resident set size (KB) = 1079684 + 0: The total amount of wall time = 294.492893 + 0: The maximum resident set size (KB) = 1071516 Test 090 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.976837 - 0: The maximum resident set size (KB) = 997104 + 0: The total amount of wall time = 286.570099 + 0: The maximum resident set size (KB) = 997212 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.774187 - 0: The maximum resident set size (KB) = 997588 + 0: The total amount of wall time = 286.905483 + 0: The maximum resident set size (KB) = 997668 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.660800 - 0: The maximum resident set size (KB) = 998180 + 0: The total amount of wall time = 283.370488 + 0: The maximum resident set size (KB) = 990056 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.165316 - 0: The maximum resident set size (KB) = 989268 + 0: The total amount of wall time = 280.719055 + 0: The maximum resident set size (KB) = 997412 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.881229 - 0: The maximum resident set size (KB) = 997136 + 0: The total amount of wall time = 274.923037 + 0: The maximum resident set size (KB) = 997264 Test 095 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.707700 - 0: The maximum resident set size (KB) = 997260 + 0: The total amount of wall time = 280.812036 + 0: The maximum resident set size (KB) = 997356 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.565146 - 0: The maximum resident set size (KB) = 996804 + 0: The total amount of wall time = 465.248206 + 0: The maximum resident set size (KB) = 996976 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.356988 - 0: The maximum resident set size (KB) = 986564 + 0: The total amount of wall time = 276.436869 + 0: The maximum resident set size (KB) = 994656 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.697387 - 0: The maximum resident set size (KB) = 991792 + 0: The total amount of wall time = 346.666244 + 0: The maximum resident set size (KB) = 1000148 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.820655 - 0: The maximum resident set size (KB) = 997432 + 0: The total amount of wall time = 280.835488 + 0: The maximum resident set size (KB) = 997464 Test 100 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.178975 - 0: The maximum resident set size (KB) = 288024 + 0: The total amount of wall time = 285.737689 + 0: The maximum resident set size (KB) = 288040 Test 101 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 234.348565 - 0: The maximum resident set size (KB) = 818776 + 0: The total amount of wall time = 235.234997 + 0: The maximum resident set size (KB) = 818760 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3545,100 +3545,100 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.318283 - 0: The maximum resident set size (KB) = 718596 + 0: The total amount of wall time = 368.071531 + 0: The maximum resident set size (KB) = 710428 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_dyn32_phy32_intel -Checking test 104 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 189.219278 - 0: The maximum resident set size (KB) = 706956 +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_dyn32_phy32_intel +Checking test 104 hrrr_control_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 189.514417 + 0: The maximum resident set size (KB) = 715076 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3653,7 +3653,7 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3685,14 +3685,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.158051 - 0: The maximum resident set size (KB) = 720456 + 0: The total amount of wall time = 190.328166 + 0: The maximum resident set size (KB) = 720444 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3707,46 +3707,46 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.951581 - 0: The maximum resident set size (KB) = 769688 + 0: The total amount of wall time = 345.742087 + 0: The maximum resident set size (KB) = 765788 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3761,46 +3761,46 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 176.026954 - 0: The maximum resident set size (KB) = 758856 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 175.756034 + 0: The maximum resident set size (KB) = 767168 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3815,120 +3815,120 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 196.694557 - 0: The maximum resident set size (KB) = 715720 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 194.370835 + 0: The maximum resident set size (KB) = 707572 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.190021 - 0: The maximum resident set size (KB) = 632092 + 0: The total amount of wall time = 274.145798 + 0: The maximum resident set size (KB) = 632240 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.908398 - 0: The maximum resident set size (KB) = 594240 + 0: The total amount of wall time = 98.814484 + 0: The maximum resident set size (KB) = 594308 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.797702 - 0: The maximum resident set size (KB) = 560024 + 0: The total amount of wall time = 100.725907 + 0: The maximum resident set size (KB) = 559712 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3937,47 +3937,47 @@ Checking test 112 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 122.171596 - 0: The maximum resident set size (KB) = 941080 + 0: The total amount of wall time = 119.231817 + 0: The maximum resident set size (KB) = 941260 Test 112 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.758496 - 0: The maximum resident set size (KB) = 948000 + 0: The total amount of wall time = 45.665926 + 0: The maximum resident set size (KB) = 947844 Test 113 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.405757 - 0: The maximum resident set size (KB) = 887588 + 0: The total amount of wall time = 65.593665 + 0: The maximum resident set size (KB) = 887308 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3992,155 +3992,155 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 249.294986 - 0: The maximum resident set size (KB) = 728948 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 248.996184 + 0: The maximum resident set size (KB) = 729028 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.776186 - 0: The maximum resident set size (KB) = 881720 + 0: The total amount of wall time = 278.274622 + 0: The maximum resident set size (KB) = 873760 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.225234 - 0: The maximum resident set size (KB) = 880660 + 0: The total amount of wall time = 271.914791 + 0: The maximum resident set size (KB) = 872524 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 872.095891 - 0: The maximum resident set size (KB) = 974484 + 0: The total amount of wall time = 867.001168 + 0: The maximum resident set size (KB) = 974532 Test 118 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 493.566612 - 0: The maximum resident set size (KB) = 981088 + 0: The total amount of wall time = 492.214055 + 0: The maximum resident set size (KB) = 981264 Test 119 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/conus13km_radar_tten_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 870.611341 - 0: The maximum resident set size (KB) = 1042384 + 0: The total amount of wall time = 867.434604 + 0: The maximum resident set size (KB) = 1042320 Test 120 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.745916 + 0: The total amount of wall time = 282.889852 0: The maximum resident set size (KB) = 884876 Test 121 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 230.772347 - 0: The maximum resident set size (KB) = 877836 + 0: The total amount of wall time = 230.558330 + 0: The maximum resident set size (KB) = 1023624 Test 122 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 271.703936 - 0: The maximum resident set size (KB) = 1203348 + 0: The total amount of wall time = 273.967923 + 0: The maximum resident set size (KB) = 1205700 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 417.062710 - 0: The maximum resident set size (KB) = 909048 + 0: The total amount of wall time = 412.933327 + 0: The maximum resident set size (KB) = 910620 Test 124 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,14 +4165,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 901.859384 - 0: The maximum resident set size (KB) = 930348 + 0: The total amount of wall time = 902.724549 + 0: The maximum resident set size (KB) = 931100 Test 125 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,51 +4183,51 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1009.494856 - 0: The maximum resident set size (KB) = 960212 + 0: The total amount of wall time = 1010.852622 + 0: The maximum resident set size (KB) = 962440 Test 126 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 332.481611 - 0: The maximum resident set size (KB) = 428128 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 333.005080 + 0: The maximum resident set size (KB) = 427796 Test 127 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4238,17 +4238,17 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 392.121853 - 0: The maximum resident set size (KB) = 298224 + 0: The total amount of wall time = 387.288550 + 0: The maximum resident set size (KB) = 297620 Test 128 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4257,76 +4257,76 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 379.646670 - 0: The maximum resident set size (KB) = 438628 - -Test 129 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_1nest_atm_intel -Checking test 130 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + 0: The total amount of wall time = 378.582882 + 0: The maximum resident set size (KB) = 438624 - 0: The total amount of wall time = 151.517838 - 0: The maximum resident set size (KB) = 233820 +Test 129 hafs_regional_telescopic_2nests_atm_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_1nest_atm_intel +Checking test 130 hafs_global_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 151.506787 + 0: The maximum resident set size (KB) = 233884 Test 130 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4362,17 +4362,17 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 253.675932 - 0: The maximum resident set size (KB) = 215876 + 0: The total amount of wall time = 228.591058 + 0: The maximum resident set size (KB) = 214684 Test 131 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4390,78 +4390,78 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 428.786630 - 0: The maximum resident set size (KB) = 257324 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 429.932387 + 0: The maximum resident set size (KB) = 258212 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4479,14 +4479,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4534,23 +4534,23 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 686.163271 - 0: The maximum resident set size (KB) = 256052 + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 594.998835 + 0: The maximum resident set size (KB) = 270016 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,51 +4559,51 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 212.978047 - 0: The maximum resident set size (KB) = 447364 + 0: The total amount of wall time = 213.134550 + 0: The maximum resident set size (KB) = 447396 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 197.655717 - 0: The maximum resident set size (KB) = 445228 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 197.536172 + 0: The maximum resident set size (KB) = 445220 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4614,17 +4614,17 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 274.990488 - 0: The maximum resident set size (KB) = 329016 + 0: The total amount of wall time = 250.893540 + 0: The maximum resident set size (KB) = 328832 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4633,42 +4633,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 245.275655 - 0: The maximum resident set size (KB) = 474336 + 0: The total amount of wall time = 246.169409 + 0: The maximum resident set size (KB) = 475020 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.668033 - 0: The maximum resident set size (KB) = 254728 + 0: The total amount of wall time = 58.158339 + 0: The maximum resident set size (KB) = 254288 Test 138 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.885553 - 0: The maximum resident set size (KB) = 493700 + 0: The total amount of wall time = 754.720325 + 0: The maximum resident set size (KB) = 493960 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 634.262096 - 0: The maximum resident set size (KB) = 524780 + 0: The total amount of wall time = 635.616073 + 0: The maximum resident set size (KB) = 526428 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.450089 - 0: The maximum resident set size (KB) = 901016 + 0: The total amount of wall time = 356.722207 + 0: The maximum resident set size (KB) = 904416 Test 141 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,131 +4709,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.833800 - 0: The maximum resident set size (KB) = 887844 + 0: The total amount of wall time = 357.978285 + 0: The maximum resident set size (KB) = 888100 Test 142 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1188.336531 - 0: The maximum resident set size (KB) = 848440 + 0: The total amount of wall time = 1187.557802 + 0: The maximum resident set size (KB) = 848476 Test 143 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.237797 - 0: The maximum resident set size (KB) = 719644 + 0: The total amount of wall time = 165.669139 + 0: The maximum resident set size (KB) = 720028 Test 144 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 96.796801 - 0: The maximum resident set size (KB) = 718944 + 0: The total amount of wall time = 97.226583 + 0: The maximum resident set size (KB) = 718964 Test 145 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.948261 - 0: The maximum resident set size (KB) = 610964 + 0: The total amount of wall time = 157.221599 + 0: The maximum resident set size (KB) = 613520 Test 146 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.704632 - 0: The maximum resident set size (KB) = 617388 + 0: The total amount of wall time = 156.853533 + 0: The maximum resident set size (KB) = 610872 Test 147 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.338941 - 0: The maximum resident set size (KB) = 611228 + 0: The total amount of wall time = 156.992648 + 0: The maximum resident set size (KB) = 611068 Test 148 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.497108 - 0: The maximum resident set size (KB) = 731432 + 0: The total amount of wall time = 162.797615 + 0: The maximum resident set size (KB) = 731440 Test 149 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.139294 - 0: The maximum resident set size (KB) = 731436 + 0: The total amount of wall time = 162.101954 + 0: The maximum resident set size (KB) = 719964 Test 150 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.946590 - 0: The maximum resident set size (KB) = 610772 + 0: The total amount of wall time = 154.129910 + 0: The maximum resident set size (KB) = 613188 Test 151 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4842,14 +4842,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 381.028569 - 0: The maximum resident set size (KB) = 512260 + 0: The total amount of wall time = 383.036721 + 0: The maximum resident set size (KB) = 512320 Test 152 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4858,77 +4858,77 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 378.083923 - 0: The maximum resident set size (KB) = 497512 + 0: The total amount of wall time = 380.442597 + 0: The maximum resident set size (KB) = 495268 Test 153 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.053138 - 0: The maximum resident set size (KB) = 731516 + 0: The total amount of wall time = 165.230294 + 0: The maximum resident set size (KB) = 731440 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 265.590658 - 0: The maximum resident set size (KB) = 1967012 + 0: The total amount of wall time = 266.136513 + 0: The maximum resident set size (KB) = 1966896 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.343511 - 0: The maximum resident set size (KB) = 1966212 + 0: The total amount of wall time = 263.632228 + 0: The maximum resident set size (KB) = 1963000 Test 156 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_debug_cfsr_intel Checking test 157 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 369.474463 - 0: The maximum resident set size (KB) = 714860 + 0: The total amount of wall time = 370.769955 + 0: The maximum resident set size (KB) = 703140 Test 157 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.893362 - 0: The maximum resident set size (KB) = 719772 + 0: The total amount of wall time = 162.040254 + 0: The maximum resident set size (KB) = 731324 Test 158 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4937,14 +4937,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.987653 - 0: The maximum resident set size (KB) = 118276 + 0: The total amount of wall time = 6.583565 + 0: The maximum resident set size (KB) = 118208 Test 159 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4953,14 +4953,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.166245 - 0: The maximum resident set size (KB) = 116164 + 0: The total amount of wall time = 11.420596 + 0: The maximum resident set size (KB) = 116180 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5045,64 +5045,64 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 213.686066 - 0: The maximum resident set size (KB) = 1454868 + 0: The total amount of wall time = 214.402542 + 0: The maximum resident set size (KB) = 1454884 Test 161 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.778668 - 0: The maximum resident set size (KB) = 1437780 + 0: The total amount of wall time = 93.029459 + 0: The maximum resident set size (KB) = 1437388 Test 162 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5113,47 +5113,47 @@ Checking test 163 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.853137 - 0: The maximum resident set size (KB) = 461020 + 0: The total amount of wall time = 88.832735 + 0: The maximum resident set size (KB) = 461136 Test 163 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5165,46 +5165,46 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.112357 - 0: The maximum resident set size (KB) = 1482244 + 0: The total amount of wall time = 238.909394 + 0: The maximum resident set size (KB) = 1482260 Test 164 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5216,46 +5216,46 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.792926 - 0: The maximum resident set size (KB) = 1524684 + 0: The total amount of wall time = 288.146843 + 0: The maximum resident set size (KB) = 1524708 Test 165 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5267,46 +5267,46 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.327529 - 0: The maximum resident set size (KB) = 1532280 + 0: The total amount of wall time = 291.260213 + 0: The maximum resident set size (KB) = 1532244 Test 166 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5315,21 +5315,21 @@ Checking test 167 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 643.312589 - 0: The maximum resident set size (KB) = 5048712 + 0: The total amount of wall time = 653.872483 + 0: The maximum resident set size (KB) = 5017296 Test 167 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_22883/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_atmaq_faster_intel Checking test 168 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5338,19 +5338,19 @@ Checking test 168 regional_atmaq_faster_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 619.296829 - 0: The maximum resident set size (KB) = 5048056 + 0: The total amount of wall time = 620.283542 + 0: The maximum resident set size (KB) = 5043176 -Test 168 regional_atmaq_faster_intel PASS Tries: 2 +Test 168 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 21 Sep 2023 11:06:33 AM EDT -Elapsed time: 01h:12m:59s. Have a nice day! +Sun 24 Sep 2023 11:38:59 AM EDT +Elapsed time: 01h:13m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 65d02e16d5..000c352d60 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Sep 21 05:00:56 UTC 2023 +Fri Sep 22 22:02:45 UTC 2023 Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 233 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 164 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 597 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 263 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 584 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 170 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 259 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_faster_dyn32_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 544 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 521 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 539 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 556 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 556 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 538 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 544 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 512 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 542 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 544 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 109 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 579 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 194 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 583 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 645 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile hafs_all_intel elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 598 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 650 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2s_gnu elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 220 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 628 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 117 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 221 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 240 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 905 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 654 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 129 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 237 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 954 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 652 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 92 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 217 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 616 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 217 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 891 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 645 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 127 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 239 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 965 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 245 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 88 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile wam_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_mixedmode_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.053807 - 0: The maximum resident set size (KB) = 3141388 + 0: The total amount of wall time = 315.334704 + 0: The maximum resident set size (KB) = 3094508 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 218.705561 - 0: The maximum resident set size (KB) = 1699020 + 0: The total amount of wall time = 219.971733 + 0: The maximum resident set size (KB) = 1669760 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.110845 - 0: The maximum resident set size (KB) = 3197664 + 0: The total amount of wall time = 341.024974 + 0: The maximum resident set size (KB) = 3183380 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 191.182247 - 0: The maximum resident set size (KB) = 3256576 + 0: The total amount of wall time = 191.871104 + 0: The maximum resident set size (KB) = 3238412 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.280273 - 0: The maximum resident set size (KB) = 3194024 + 0: The total amount of wall time = 338.851907 + 0: The maximum resident set size (KB) = 3214404 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.305782 - 0: The maximum resident set size (KB) = 3078348 + 0: The total amount of wall time = 199.771917 + 0: The maximum resident set size (KB) = 3077400 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.862736 - 0: The maximum resident set size (KB) = 3525788 + 0: The total amount of wall time = 325.878111 + 0: The maximum resident set size (KB) = 3533336 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.507847 - 0: The maximum resident set size (KB) = 3178812 + 0: The total amount of wall time = 347.964777 + 0: The maximum resident set size (KB) = 3182128 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.370687 - 0: The maximum resident set size (KB) = 3048876 + 0: The total amount of wall time = 283.445413 + 0: The maximum resident set size (KB) = 3034432 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.831181 - 0: The maximum resident set size (KB) = 3194012 + 0: The total amount of wall time = 346.820397 + 0: The maximum resident set size (KB) = 3173672 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.123588 - 0: The maximum resident set size (KB) = 3421444 + 0: The total amount of wall time = 578.849809 + 0: The maximum resident set size (KB) = 3433400 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 370.966910 - 0: The maximum resident set size (KB) = 3606976 + 0: The total amount of wall time = 368.995715 + 0: The maximum resident set size (KB) = 3612344 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 627.508788 - 0: The maximum resident set size (KB) = 4145136 + 0: The total amount of wall time = 625.019636 + 0: The maximum resident set size (KB) = 4102092 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 510.286776 - 0: The maximum resident set size (KB) = 4355712 + 0: The total amount of wall time = 453.180950 + 0: The maximum resident set size (KB) = 4353340 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.621506 - 0: The maximum resident set size (KB) = 1714228 + 0: The total amount of wall time = 261.997033 + 0: The maximum resident set size (KB) = 1714768 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.554374 - 0: The maximum resident set size (KB) = 1770036 + 0: The total amount of wall time = 260.721935 + 0: The maximum resident set size (KB) = 1773072 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.128705 - 0: The maximum resident set size (KB) = 3227740 + 0: The total amount of wall time = 507.946158 + 0: The maximum resident set size (KB) = 3238168 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.531960 - 0: The maximum resident set size (KB) = 1752808 + 0: The total amount of wall time = 349.070534 + 0: The maximum resident set size (KB) = 1743388 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 255.231832 - 0: The maximum resident set size (KB) = 1770056 + 0: The total amount of wall time = 262.167715 + 0: The maximum resident set size (KB) = 1754584 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 570.877928 - 0: The maximum resident set size (KB) = 2823604 + 0: The total amount of wall time = 582.082262 + 0: The maximum resident set size (KB) = 2814736 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.045514 - 0: The maximum resident set size (KB) = 3180216 + 0: The total amount of wall time = 314.282871 + 0: The maximum resident set size (KB) = 3195820 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1210.599387 - 0: The maximum resident set size (KB) = 1764592 + 0: The total amount of wall time = 1238.511083 + 0: The maximum resident set size (KB) = 1768864 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 564.159803 - 0: The maximum resident set size (KB) = 1150776 + 0: The total amount of wall time = 569.169538 + 0: The maximum resident set size (KB) = 1146440 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1092.981416 - 0: The maximum resident set size (KB) = 1669328 + 0: The total amount of wall time = 1086.350600 + 0: The maximum resident set size (KB) = 1665492 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1347.341350 - 0: The maximum resident set size (KB) = 1710576 + 0: The total amount of wall time = 1386.010992 + 0: The maximum resident set size (KB) = 1705244 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.502427 - 0: The maximum resident set size (KB) = 690960 + 0: The total amount of wall time = 186.019395 + 0: The maximum resident set size (KB) = 689600 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,36 +1719,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.896694 - 0: The maximum resident set size (KB) = 643676 + 0: The total amount of wall time = 130.579540 + 0: The maximum resident set size (KB) = 640532 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.356273 - 0: The maximum resident set size (KB) = 650020 + 0: The total amount of wall time = 139.449286 + 0: The maximum resident set size (KB) = 649812 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.567572 - 0: The maximum resident set size (KB) = 646820 + 0: The total amount of wall time = 134.288759 + 0: The maximum resident set size (KB) = 641864 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.114027 - 0: The maximum resident set size (KB) = 642332 + 0: The total amount of wall time = 136.098057 + 0: The maximum resident set size (KB) = 644108 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.744217 -0: The maximum resident set size (KB) = 831188 +0: The total amount of wall time = 365.669095 +0: The maximum resident set size (KB) = 840336 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.889499 - 0: The maximum resident set size (KB) = 788896 + 0: The total amount of wall time = 532.738242 + 0: The maximum resident set size (KB) = 765048 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.842330 - 0: The maximum resident set size (KB) = 1377732 + 0: The total amount of wall time = 529.002761 + 0: The maximum resident set size (KB) = 1380876 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.260758 - 0: The maximum resident set size (KB) = 1497372 + 0: The total amount of wall time = 464.462639 + 0: The maximum resident set size (KB) = 1493100 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.999712 - 0: The maximum resident set size (KB) = 648340 + 0: The total amount of wall time = 90.502401 + 0: The maximum resident set size (KB) = 647908 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.670014 - 0: The maximum resident set size (KB) = 531076 + 0: The total amount of wall time = 48.459049 + 0: The maximum resident set size (KB) = 553856 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.101775 - 0: The maximum resident set size (KB) = 641872 + 0: The total amount of wall time = 81.538737 + 0: The maximum resident set size (KB) = 645140 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.229070 - 0: The maximum resident set size (KB) = 645444 + 0: The total amount of wall time = 135.439938 + 0: The maximum resident set size (KB) = 644988 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.032232 - 0: The maximum resident set size (KB) = 638992 + 0: The total amount of wall time = 136.331157 + 0: The maximum resident set size (KB) = 642056 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.050891 - 0: The maximum resident set size (KB) = 1621300 + 0: The total amount of wall time = 166.717787 + 0: The maximum resident set size (KB) = 1607644 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.704028 - 0: The maximum resident set size (KB) = 927916 + 0: The total amount of wall time = 88.883700 + 0: The maximum resident set size (KB) = 934104 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.447728 - 0: The maximum resident set size (KB) = 1616024 + 0: The total amount of wall time = 167.138388 + 0: The maximum resident set size (KB) = 1615852 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.378289 - 0: The maximum resident set size (KB) = 876280 + 0: The total amount of wall time = 89.402786 + 0: The maximum resident set size (KB) = 880064 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.782522 - 0: The maximum resident set size (KB) = 1610016 + 0: The total amount of wall time = 178.283133 + 0: The maximum resident set size (KB) = 1580792 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.865878 - 0: The maximum resident set size (KB) = 1690152 + 0: The total amount of wall time = 155.404356 + 0: The maximum resident set size (KB) = 1694232 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.475411 - 0: The maximum resident set size (KB) = 1611608 + 0: The total amount of wall time = 312.948285 + 0: The maximum resident set size (KB) = 1615944 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.655728 - 0: The maximum resident set size (KB) = 1671456 + 0: The total amount of wall time = 224.898107 + 0: The maximum resident set size (KB) = 1673404 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.163728 - 0: The maximum resident set size (KB) = 1610664 + 0: The total amount of wall time = 170.121395 + 0: The maximum resident set size (KB) = 1613092 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.917400 - 0: The maximum resident set size (KB) = 1613924 + 0: The total amount of wall time = 190.836247 + 0: The maximum resident set size (KB) = 1619940 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.101845 - 0: The maximum resident set size (KB) = 1097848 + 0: The total amount of wall time = 291.277786 + 0: The maximum resident set size (KB) = 1098384 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 147.765498 - 0: The maximum resident set size (KB) = 1089576 + 0: The total amount of wall time = 148.312722 + 0: The maximum resident set size (KB) = 1091240 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.055168 - 0: The maximum resident set size (KB) = 1100716 + 0: The total amount of wall time = 290.913250 + 0: The maximum resident set size (KB) = 1094320 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.236345 - 0: The maximum resident set size (KB) = 1091744 + 0: The total amount of wall time = 149.038898 + 0: The maximum resident set size (KB) = 1091028 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.046030 - 0: The maximum resident set size (KB) = 1091088 + 0: The total amount of wall time = 307.361257 + 0: The maximum resident set size (KB) = 1090500 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 174.305344 - 0: The maximum resident set size (KB) = 1077108 + 0: The total amount of wall time = 175.539395 + 0: The maximum resident set size (KB) = 1067264 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 289.845309 - 0: The maximum resident set size (KB) = 1360876 + 0: The total amount of wall time = 289.433829 + 0: The maximum resident set size (KB) = 1362272 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 288.342940 - 0: The maximum resident set size (KB) = 1097608 + 0: The total amount of wall time = 287.200836 + 0: The maximum resident set size (KB) = 1084876 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.356333 - 0: The maximum resident set size (KB) = 1096344 + 0: The total amount of wall time = 292.607456 + 0: The maximum resident set size (KB) = 1089220 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.971635 - 0: The maximum resident set size (KB) = 923964 + 0: The total amount of wall time = 370.574408 + 0: The maximum resident set size (KB) = 921304 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.659263 - 0: The maximum resident set size (KB) = 1246052 + 0: The total amount of wall time = 445.817257 + 0: The maximum resident set size (KB) = 1237572 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 228.261994 - 0: The maximum resident set size (KB) = 1209316 + 0: The total amount of wall time = 229.790924 + 0: The maximum resident set size (KB) = 1206452 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.116599 - 0: The maximum resident set size (KB) = 1154316 + 0: The total amount of wall time = 463.210160 + 0: The maximum resident set size (KB) = 1168768 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.164612 - 0: The maximum resident set size (KB) = 1323816 + 0: The total amount of wall time = 418.885762 + 0: The maximum resident set size (KB) = 1323600 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.971723 - 0: The maximum resident set size (KB) = 1137636 + 0: The total amount of wall time = 227.006255 + 0: The maximum resident set size (KB) = 1137272 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.662768 - 0: The maximum resident set size (KB) = 1229340 + 0: The total amount of wall time = 446.930072 + 0: The maximum resident set size (KB) = 1238716 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.021052 - 0: The maximum resident set size (KB) = 1169332 + 0: The total amount of wall time = 473.208274 + 0: The maximum resident set size (KB) = 1167052 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 331.558873 - 0: The maximum resident set size (KB) = 1167936 + 0: The total amount of wall time = 333.419099 + 0: The maximum resident set size (KB) = 1166444 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.296299 - 0: The maximum resident set size (KB) = 1175424 + 0: The total amount of wall time = 430.600929 + 0: The maximum resident set size (KB) = 1183212 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.154640 - 0: The maximum resident set size (KB) = 1077580 + 0: The total amount of wall time = 428.745843 + 0: The maximum resident set size (KB) = 1089564 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.466895 - 0: The maximum resident set size (KB) = 1122748 + 0: The total amount of wall time = 448.006116 + 0: The maximum resident set size (KB) = 1110876 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.301444 - 0: The maximum resident set size (KB) = 1137880 + 0: The total amount of wall time = 396.342569 + 0: The maximum resident set size (KB) = 1125660 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.671514 - 0: The maximum resident set size (KB) = 1117540 + 0: The total amount of wall time = 320.116298 + 0: The maximum resident set size (KB) = 1117252 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 323.381668 - 0: The maximum resident set size (KB) = 1019680 + 0: The total amount of wall time = 322.845502 + 0: The maximum resident set size (KB) = 1013380 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.631656 - 0: The maximum resident set size (KB) = 1204556 + 0: The total amount of wall time = 441.902676 + 0: The maximum resident set size (KB) = 1208188 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.441302 - 0: The maximum resident set size (KB) = 764040 + 0: The total amount of wall time = 521.330710 + 0: The maximum resident set size (KB) = 806768 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.553405 - 0: The maximum resident set size (KB) = 909284 + 0: The total amount of wall time = 506.934353 + 0: The maximum resident set size (KB) = 917032 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_gf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.907895 - 0: The maximum resident set size (KB) = 1224752 + 0: The total amount of wall time = 447.653733 + 0: The maximum resident set size (KB) = 1226136 Test 077 hrrr_gf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_c3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3486,14 +3486,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.526981 - 0: The maximum resident set size (KB) = 1220344 + 0: The total amount of wall time = 450.630981 + 0: The maximum resident set size (KB) = 1226424 Test 078 hrrr_c3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.913057 - 0: The maximum resident set size (KB) = 825936 + 0: The total amount of wall time = 338.727327 + 0: The maximum resident set size (KB) = 814596 Test 079 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3522,14 +3522,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.174779 - 0: The maximum resident set size (KB) = 814900 + 0: The total amount of wall time = 333.566423 + 0: The maximum resident set size (KB) = 819144 Test 080 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3540,26 +3540,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.668054 - 0: The maximum resident set size (KB) = 792120 + 0: The total amount of wall time = 185.939739 + 0: The maximum resident set size (KB) = 811828 Test 081 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.982394 - 0: The maximum resident set size (KB) = 706640 + 0: The total amount of wall time = 112.706600 + 0: The maximum resident set size (KB) = 702652 Test 082 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.409393 - 0: The maximum resident set size (KB) = 1611268 + 0: The total amount of wall time = 153.364468 + 0: The maximum resident set size (KB) = 1602792 Test 083 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.369035 - 0: The maximum resident set size (KB) = 1091348 + 0: The total amount of wall time = 263.029921 + 0: The maximum resident set size (KB) = 1092556 Test 084 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3658,348 +3658,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.171983 - 0: The maximum resident set size (KB) = 796584 + 0: The total amount of wall time = 150.298745 + 0: The maximum resident set size (KB) = 788264 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.564383 - 0: The maximum resident set size (KB) = 805520 + 0: The total amount of wall time = 143.178118 + 0: The maximum resident set size (KB) = 801412 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.076653 - 0: The maximum resident set size (KB) = 803724 + 0: The total amount of wall time = 168.240715 + 0: The maximum resident set size (KB) = 806972 Test 087 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.557789 - 0: The maximum resident set size (KB) = 802736 + 0: The total amount of wall time = 150.729636 + 0: The maximum resident set size (KB) = 785424 Test 088 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.923687 - 0: The maximum resident set size (KB) = 822448 + 0: The total amount of wall time = 227.191947 + 0: The maximum resident set size (KB) = 850444 Test 089 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.106712 - 0: The maximum resident set size (KB) = 850876 + 0: The total amount of wall time = 224.802457 + 0: The maximum resident set size (KB) = 847588 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.453720 - 0: The maximum resident set size (KB) = 807172 + 0: The total amount of wall time = 149.456004 + 0: The maximum resident set size (KB) = 813140 Test 091 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.193736 - 0: The maximum resident set size (KB) = 858772 + 0: The total amount of wall time = 150.936991 + 0: The maximum resident set size (KB) = 860188 Test 092 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.616578 - 0: The maximum resident set size (KB) = 1625236 + 0: The total amount of wall time = 166.766597 + 0: The maximum resident set size (KB) = 1626244 Test 093 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 963.316813 - 0: The maximum resident set size (KB) = 1107336 + 0: The total amount of wall time = 970.286040 + 0: The maximum resident set size (KB) = 1103872 Test 094 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.143621 - 0: The maximum resident set size (KB) = 1184108 + 0: The total amount of wall time = 272.712581 + 0: The maximum resident set size (KB) = 1189820 Test 095 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.209794 - 0: The maximum resident set size (KB) = 1192464 + 0: The total amount of wall time = 265.651292 + 0: The maximum resident set size (KB) = 1179960 Test 096 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.567693 - 0: The maximum resident set size (KB) = 1189376 + 0: The total amount of wall time = 270.495175 + 0: The maximum resident set size (KB) = 1192928 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.380325 - 0: The maximum resident set size (KB) = 1261180 + 0: The total amount of wall time = 286.684425 + 0: The maximum resident set size (KB) = 1267772 Test 098 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.297937 - 0: The maximum resident set size (KB) = 1180256 + 0: The total amount of wall time = 282.025220 + 0: The maximum resident set size (KB) = 1175648 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.934070 - 0: The maximum resident set size (KB) = 1180952 + 0: The total amount of wall time = 275.585504 + 0: The maximum resident set size (KB) = 1188900 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.344371 - 0: The maximum resident set size (KB) = 1196608 + 0: The total amount of wall time = 278.699997 + 0: The maximum resident set size (KB) = 1190328 Test 101 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.033134 - 0: The maximum resident set size (KB) = 1194984 + 0: The total amount of wall time = 272.394258 + 0: The maximum resident set size (KB) = 1190576 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.460486 - 0: The maximum resident set size (KB) = 1186620 + 0: The total amount of wall time = 269.959246 + 0: The maximum resident set size (KB) = 1198432 Test 103 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.262181 - 0: The maximum resident set size (KB) = 1193500 + 0: The total amount of wall time = 271.601266 + 0: The maximum resident set size (KB) = 1183496 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 446.860627 - 0: The maximum resident set size (KB) = 1186728 + 0: The total amount of wall time = 445.816101 + 0: The maximum resident set size (KB) = 1195228 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.254361 - 0: The maximum resident set size (KB) = 1178688 + 0: The total amount of wall time = 264.670981 + 0: The maximum resident set size (KB) = 1178376 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.403266 - 0: The maximum resident set size (KB) = 1185808 + 0: The total amount of wall time = 338.269721 + 0: The maximum resident set size (KB) = 1193920 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.286459 - 0: The maximum resident set size (KB) = 1178812 + 0: The total amount of wall time = 277.459446 + 0: The maximum resident set size (KB) = 1183688 Test 108 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 273.900179 - 0: The maximum resident set size (KB) = 560376 + 0: The total amount of wall time = 274.001893 + 0: The maximum resident set size (KB) = 590536 Test 109 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +4010,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 224.679681 - 0: The maximum resident set size (KB) = 1102580 + 0: The total amount of wall time = 214.457067 + 0: The maximum resident set size (KB) = 1109848 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.158328 - 0: The maximum resident set size (KB) = 1101132 + 0: The total amount of wall time = 368.030309 + 0: The maximum resident set size (KB) = 1101968 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.888027 - 0: The maximum resident set size (KB) = 1027268 + 0: The total amount of wall time = 190.981967 + 0: The maximum resident set size (KB) = 1033788 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.932460 - 0: The maximum resident set size (KB) = 979700 + 0: The total amount of wall time = 190.249155 + 0: The maximum resident set size (KB) = 981200 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.901047 - 0: The maximum resident set size (KB) = 1125884 + 0: The total amount of wall time = 346.257300 + 0: The maximum resident set size (KB) = 1125216 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.221424 - 0: The maximum resident set size (KB) = 973824 + 0: The total amount of wall time = 175.651180 + 0: The maximum resident set size (KB) = 973100 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.109288 - 0: The maximum resident set size (KB) = 970236 + 0: The total amount of wall time = 200.584832 + 0: The maximum resident set size (KB) = 981008 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,42 +4380,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.524705 - 0: The maximum resident set size (KB) = 1050504 + 0: The total amount of wall time = 275.265274 + 0: The maximum resident set size (KB) = 1050768 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.099763 - 0: The maximum resident set size (KB) = 940504 + 0: The total amount of wall time = 98.919193 + 0: The maximum resident set size (KB) = 933976 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.334301 - 0: The maximum resident set size (KB) = 888056 + 0: The total amount of wall time = 100.986302 + 0: The maximum resident set size (KB) = 883064 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4431,40 +4431,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.190437 - 0: The maximum resident set size (KB) = 1223592 + 0: The total amount of wall time = 112.944711 + 0: The maximum resident set size (KB) = 1252016 Test 120 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.803698 - 0: The maximum resident set size (KB) = 1168352 + 0: The total amount of wall time = 42.935398 + 0: The maximum resident set size (KB) = 1169792 Test 121 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.508376 - 0: The maximum resident set size (KB) = 1191144 + 0: The total amount of wall time = 63.159260 + 0: The maximum resident set size (KB) = 1188468 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4511,123 +4511,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.529848 - 0: The maximum resident set size (KB) = 1098752 + 0: The total amount of wall time = 240.236933 + 0: The maximum resident set size (KB) = 1096048 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.584967 - 0: The maximum resident set size (KB) = 1077648 + 0: The total amount of wall time = 267.362873 + 0: The maximum resident set size (KB) = 1069460 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.358356 - 0: The maximum resident set size (KB) = 1073968 + 0: The total amount of wall time = 262.816270 + 0: The maximum resident set size (KB) = 1074312 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 801.346579 - 0: The maximum resident set size (KB) = 1270392 + 0: The total amount of wall time = 826.612719 + 0: The maximum resident set size (KB) = 1263764 Test 126 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.687905 - 0: The maximum resident set size (KB) = 1197472 + 0: The total amount of wall time = 448.414187 + 0: The maximum resident set size (KB) = 1200620 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_radar_tten_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 808.647764 - 0: The maximum resident set size (KB) = 1339172 + 0: The total amount of wall time = 819.967498 + 0: The maximum resident set size (KB) = 1340856 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.178960 - 0: The maximum resident set size (KB) = 1109880 + 0: The total amount of wall time = 277.344373 + 0: The maximum resident set size (KB) = 1101388 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 223.177806 - 0: The maximum resident set size (KB) = 1241480 + 0: The total amount of wall time = 214.969449 + 0: The maximum resident set size (KB) = 1240540 Test 130 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 320.883796 - 0: The maximum resident set size (KB) = 1576648 + 0: The total amount of wall time = 340.166981 + 0: The maximum resident set size (KB) = 1582504 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 371.892971 - 0: The maximum resident set size (KB) = 1412184 + 0: The total amount of wall time = 367.234801 + 0: The maximum resident set size (KB) = 1420816 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4652,14 +4652,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 744.297205 - 0: The maximum resident set size (KB) = 1407152 + 0: The total amount of wall time = 745.324629 + 0: The maximum resident set size (KB) = 1447908 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4670,14 +4670,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 852.574572 - 0: The maximum resident set size (KB) = 1457080 + 0: The total amount of wall time = 847.874687 + 0: The maximum resident set size (KB) = 1460940 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4699,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 295.403562 - 0: The maximum resident set size (KB) = 656932 + 0: The total amount of wall time = 298.846894 + 0: The maximum resident set size (KB) = 654504 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4728,14 +4728,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 303.516177 - 0: The maximum resident set size (KB) = 498388 + 0: The total amount of wall time = 303.110643 + 0: The maximum resident set size (KB) = 499212 Test 136 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4744,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 339.219548 - 0: The maximum resident set size (KB) = 655328 + 0: The total amount of wall time = 338.906099 + 0: The maximum resident set size (KB) = 659892 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4798,14 +4798,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 135.845391 - 0: The maximum resident set size (KB) = 403084 + 0: The total amount of wall time = 136.412822 + 0: The maximum resident set size (KB) = 402172 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4852,14 +4852,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 143.524034 - 0: The maximum resident set size (KB) = 375628 + 0: The total amount of wall time = 142.704586 + 0: The maximum resident set size (KB) = 376888 Test 139 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4941,14 +4941,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 384.442946 - 0: The maximum resident set size (KB) = 477284 + 0: The total amount of wall time = 376.755962 + 0: The maximum resident set size (KB) = 474924 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 409.728415 - 0: The maximum resident set size (KB) = 471496 + 0: The total amount of wall time = 413.152252 + 0: The maximum resident set size (KB) = 469800 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5046,14 +5046,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 192.500164 - 0: The maximum resident set size (KB) = 667080 + 0: The total amount of wall time = 189.485946 + 0: The maximum resident set size (KB) = 668344 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,14 +5075,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 178.543963 - 0: The maximum resident set size (KB) = 672196 + 0: The total amount of wall time = 177.095832 + 0: The maximum resident set size (KB) = 635864 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 191.761210 - 0: The maximum resident set size (KB) = 528384 + 0: The total amount of wall time = 189.103818 + 0: The maximum resident set size (KB) = 534472 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,42 +5120,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.883774 - 0: The maximum resident set size (KB) = 716812 + 0: The total amount of wall time = 218.789857 + 0: The maximum resident set size (KB) = 720380 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.293366 - 0: The maximum resident set size (KB) = 415472 + 0: The total amount of wall time = 55.095423 + 0: The maximum resident set size (KB) = 415628 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 714.353946 - 0: The maximum resident set size (KB) = 726128 + 0: The total amount of wall time = 719.567327 + 0: The maximum resident set size (KB) = 725696 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 479.320244 - 0: The maximum resident set size (KB) = 806056 + 0: The total amount of wall time = 479.786851 + 0: The maximum resident set size (KB) = 805512 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,14 +5181,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.812338 - 0: The maximum resident set size (KB) = 1402988 + 0: The total amount of wall time = 337.918100 + 0: The maximum resident set size (KB) = 1412656 Test 149 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,131 +5196,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.791256 - 0: The maximum resident set size (KB) = 1400592 + 0: The total amount of wall time = 337.951407 + 0: The maximum resident set size (KB) = 1395588 Test 150 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 970.003390 - 0: The maximum resident set size (KB) = 1155568 + 0: The total amount of wall time = 959.212642 + 0: The maximum resident set size (KB) = 1152756 Test 151 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.890484 - 0: The maximum resident set size (KB) = 1117352 + 0: The total amount of wall time = 157.030235 + 0: The maximum resident set size (KB) = 1109444 Test 152 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.128564 - 0: The maximum resident set size (KB) = 1054828 + 0: The total amount of wall time = 89.997073 + 0: The maximum resident set size (KB) = 1059592 Test 153 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.211607 - 0: The maximum resident set size (KB) = 999456 + 0: The total amount of wall time = 152.441531 + 0: The maximum resident set size (KB) = 1011224 Test 154 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.519798 - 0: The maximum resident set size (KB) = 995772 + 0: The total amount of wall time = 152.235812 + 0: The maximum resident set size (KB) = 1000272 Test 155 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.540653 - 0: The maximum resident set size (KB) = 994948 + 0: The total amount of wall time = 149.453281 + 0: The maximum resident set size (KB) = 1004020 Test 156 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.586789 - 0: The maximum resident set size (KB) = 1114040 + 0: The total amount of wall time = 153.928335 + 0: The maximum resident set size (KB) = 1106780 Test 157 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.440011 - 0: The maximum resident set size (KB) = 1104372 + 0: The total amount of wall time = 151.588438 + 0: The maximum resident set size (KB) = 1111716 Test 158 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.800523 - 0: The maximum resident set size (KB) = 1000244 + 0: The total amount of wall time = 147.420827 + 0: The maximum resident set size (KB) = 988724 Test 159 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.862940 - 0: The maximum resident set size (KB) = 1039376 + 0: The total amount of wall time = 434.463534 + 0: The maximum resident set size (KB) = 1056764 Test 160 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5345,77 +5345,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.231524 - 0: The maximum resident set size (KB) = 1017760 + 0: The total amount of wall time = 435.800563 + 0: The maximum resident set size (KB) = 1013836 Test 161 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.496166 - 0: The maximum resident set size (KB) = 1113552 + 0: The total amount of wall time = 155.159968 + 0: The maximum resident set size (KB) = 1110232 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 224.198660 - 0: The maximum resident set size (KB) = 2468640 + 0: The total amount of wall time = 224.675447 + 0: The maximum resident set size (KB) = 2463012 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 233.522725 - 0: The maximum resident set size (KB) = 2470700 + 0: The total amount of wall time = 225.479034 + 0: The maximum resident set size (KB) = 2461528 Test 164 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 355.827849 - 0: The maximum resident set size (KB) = 1038052 + 0: The total amount of wall time = 347.275324 + 0: The maximum resident set size (KB) = 1042132 Test 165 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.069173 - 0: The maximum resident set size (KB) = 1112564 + 0: The total amount of wall time = 153.186141 + 0: The maximum resident set size (KB) = 1101796 Test 166 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5424,14 +5424,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.054305 - 0: The maximum resident set size (KB) = 254488 + 0: The total amount of wall time = 5.896443 + 0: The maximum resident set size (KB) = 254004 Test 167 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5440,14 +5440,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.275905 - 0: The maximum resident set size (KB) = 249976 + 0: The total amount of wall time = 10.740863 + 0: The maximum resident set size (KB) = 247800 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5532,14 +5532,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 204.261343 - 0: The maximum resident set size (KB) = 1616096 + 0: The total amount of wall time = 201.569668 + 0: The maximum resident set size (KB) = 1613804 Test 169 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5582,14 +5582,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.424949 - 0: The maximum resident set size (KB) = 1644072 + 0: The total amount of wall time = 92.152251 + 0: The maximum resident set size (KB) = 1644788 Test 170 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5633,14 +5633,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.435278 - 0: The maximum resident set size (KB) = 659004 + 0: The total amount of wall time = 87.980500 + 0: The maximum resident set size (KB) = 661620 Test 171 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5684,14 +5684,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.344313 - 0: The maximum resident set size (KB) = 2998520 + 0: The total amount of wall time = 232.408450 + 0: The maximum resident set size (KB) = 2999056 Test 172 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5735,14 +5735,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.905345 - 0: The maximum resident set size (KB) = 3064464 + 0: The total amount of wall time = 280.901177 + 0: The maximum resident set size (KB) = 3059032 Test 173 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5786,14 +5786,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.083445 - 0: The maximum resident set size (KB) = 3077600 + 0: The total amount of wall time = 286.853655 + 0: The maximum resident set size (KB) = 3071488 Test 174 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5809,14 +5809,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 628.951944 - 0: The maximum resident set size (KB) = 5437292 + 0: The total amount of wall time = 645.746474 + 0: The maximum resident set size (KB) = 5395712 Test 175 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5830,14 +5830,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1196.039117 - 0: The maximum resident set size (KB) = 4728616 + 0: The total amount of wall time = 1206.822113 + 0: The maximum resident set size (KB) = 4792344 Test 176 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_atmaq_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5853,14 +5853,14 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 561.026025 - 0: The maximum resident set size (KB) = 5398080 + 0: The total amount of wall time = 569.911463 + 0: The maximum resident set size (KB) = 5426916 Test 177 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c48_gnu Checking test 178 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5899,14 +5899,14 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.104021 -0: The maximum resident set size (KB) = 730200 +0: The total amount of wall time = 684.445389 +0: The maximum resident set size (KB) = 732608 Test 178 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_gnu Checking test 179 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5917,14 +5917,14 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 227.523786 - 0: The maximum resident set size (KB) = 537552 + 0: The total amount of wall time = 226.678758 + 0: The maximum resident set size (KB) = 536940 Test 179 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_gnu Checking test 180 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5935,14 +5935,14 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 284.297015 - 0: The maximum resident set size (KB) = 515600 + 0: The total amount of wall time = 278.591653 + 0: The maximum resident set size (KB) = 546908 Test 180 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_gnu Checking test 181 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5989,14 +5989,14 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 295.185187 - 0: The maximum resident set size (KB) = 1296728 + 0: The total amount of wall time = 296.977072 + 0: The maximum resident set size (KB) = 1294468 Test 181 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_flake_gnu Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.466171 - 0: The maximum resident set size (KB) = 585720 + 0: The total amount of wall time = 338.121133 + 0: The maximum resident set size (KB) = 586752 Test 182 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_gnu Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.331554 - 0: The maximum resident set size (KB) = 851724 + 0: The total amount of wall time = 681.034672 + 0: The maximum resident set size (KB) = 854984 Test 183 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_decomp_gnu Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6115,14 +6115,14 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 679.788557 - 0: The maximum resident set size (KB) = 848180 + 0: The total amount of wall time = 680.520665 + 0: The maximum resident set size (KB) = 852088 Test 184 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_gnu Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6169,14 +6169,14 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.547882 - 0: The maximum resident set size (KB) = 957800 + 0: The total amount of wall time = 611.655802 + 0: The maximum resident set size (KB) = 951724 Test 185 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_gnu Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6215,14 +6215,14 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.079809 - 0: The maximum resident set size (KB) = 752188 + 0: The total amount of wall time = 345.475261 + 0: The maximum resident set size (KB) = 752680 Test 186 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_gnu Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6269,14 +6269,14 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.110044 - 0: The maximum resident set size (KB) = 849624 + 0: The total amount of wall time = 676.200569 + 0: The maximum resident set size (KB) = 844512 Test 187 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_decomp_gnu Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6323,14 +6323,14 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 699.317115 - 0: The maximum resident set size (KB) = 851184 + 0: The total amount of wall time = 687.541051 + 0: The maximum resident set size (KB) = 845984 Test 188 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_restart_gnu Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6369,14 +6369,14 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.216545 - 0: The maximum resident set size (KB) = 759760 + 0: The total amount of wall time = 501.887332 + 0: The maximum resident set size (KB) = 766424 Test 189 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_gnu Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6423,14 +6423,14 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.899251 - 0: The maximum resident set size (KB) = 844372 + 0: The total amount of wall time = 663.034215 + 0: The maximum resident set size (KB) = 844324 Test 190 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_gnu Checking test 191 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6477,14 +6477,14 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 662.250277 - 0: The maximum resident set size (KB) = 861028 + 0: The total amount of wall time = 656.528080 + 0: The maximum resident set size (KB) = 854048 Test 191 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_gnu Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6531,14 +6531,14 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 576.137172 - 0: The maximum resident set size (KB) = 954828 + 0: The total amount of wall time = 575.451544 + 0: The maximum resident set size (KB) = 952316 Test 192 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_gnu Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6585,42 +6585,42 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.364902 - 0: The maximum resident set size (KB) = 844216 + 0: The total amount of wall time = 660.491548 + 0: The maximum resident set size (KB) = 880792 Test 193 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_gnu Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 488.133598 - 0: The maximum resident set size (KB) = 710860 + 0: The total amount of wall time = 490.989398 + 0: The maximum resident set size (KB) = 710068 Test 194 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_gnu Checking test 195 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 492.054208 - 0: The maximum resident set size (KB) = 607756 + 0: The total amount of wall time = 493.390327 + 0: The maximum resident set size (KB) = 611836 Test 195 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_gnu Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6667,14 +6667,14 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 664.035611 - 0: The maximum resident set size (KB) = 843788 + 0: The total amount of wall time = 674.943178 + 0: The maximum resident set size (KB) = 845160 Test 196 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_gf_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_gf_gnu Checking test 197 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6721,208 +6721,208 @@ Checking test 197 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 677.355856 - 0: The maximum resident set size (KB) = 848396 + 0: The total amount of wall time = 688.693508 + 0: The maximum resident set size (KB) = 847188 Test 197 hrrr_gf_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 84.130229 - 0: The maximum resident set size (KB) = 585584 + 0: The total amount of wall time = 82.631494 + 0: The maximum resident set size (KB) = 587276 Test 198 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 439.053488 - 0: The maximum resident set size (KB) = 821096 + 0: The total amount of wall time = 435.690577 + 0: The maximum resident set size (KB) = 816464 Test 199 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.594960 - 0: The maximum resident set size (KB) = 860584 + 0: The total amount of wall time = 137.623093 + 0: The maximum resident set size (KB) = 892524 Test 200 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.832776 - 0: The maximum resident set size (KB) = 856552 + 0: The total amount of wall time = 133.082068 + 0: The maximum resident set size (KB) = 854812 Test 201 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.077170 - 0: The maximum resident set size (KB) = 941920 + 0: The total amount of wall time = 147.749667 + 0: The maximum resident set size (KB) = 939984 Test 202 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.421928 - 0: The maximum resident set size (KB) = 861932 + 0: The total amount of wall time = 221.475792 + 0: The maximum resident set size (KB) = 895964 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.886686 - 0: The maximum resident set size (KB) = 897524 + 0: The total amount of wall time = 142.833755 + 0: The maximum resident set size (KB) = 858164 Test 204 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.491463 - 0: The maximum resident set size (KB) = 889020 + 0: The total amount of wall time = 134.677078 + 0: The maximum resident set size (KB) = 890264 Test 205 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 77.125239 - 0: The maximum resident set size (KB) = 500452 + 0: The total amount of wall time = 78.813364 + 0: The maximum resident set size (KB) = 502464 Test 206 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.236329 - 0: The maximum resident set size (KB) = 495380 + 0: The total amount of wall time = 110.575884 + 0: The maximum resident set size (KB) = 497960 Test 207 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.487509 - 0: The maximum resident set size (KB) = 1287836 + 0: The total amount of wall time = 86.784521 + 0: The maximum resident set size (KB) = 1278496 Test 208 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.473172 - 0: The maximum resident set size (KB) = 855076 + 0: The total amount of wall time = 137.487626 + 0: The maximum resident set size (KB) = 896560 Test 209 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.534203 - 0: The maximum resident set size (KB) = 896952 + 0: The total amount of wall time = 154.411101 + 0: The maximum resident set size (KB) = 859056 Test 210 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_debug_gnu Checking test 211 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 135.162524 - 0: The maximum resident set size (KB) = 284728 + 0: The total amount of wall time = 134.741086 + 0: The maximum resident set size (KB) = 284980 Test 211 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6969,14 +6969,14 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.080856 - 0: The maximum resident set size (KB) = 744240 + 0: The total amount of wall time = 698.797589 + 0: The maximum resident set size (KB) = 745428 Test 212 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7023,14 +7023,14 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.294969 - 0: The maximum resident set size (KB) = 743648 + 0: The total amount of wall time = 352.792456 + 0: The maximum resident set size (KB) = 745984 Test 213 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7077,14 +7077,14 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 354.340166 - 0: The maximum resident set size (KB) = 749928 + 0: The total amount of wall time = 354.527297 + 0: The maximum resident set size (KB) = 753796 Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7131,14 +7131,14 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.152665 - 0: The maximum resident set size (KB) = 795432 + 0: The total amount of wall time = 628.366460 + 0: The maximum resident set size (KB) = 789300 Test 215 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7185,14 +7185,14 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.352331 - 0: The maximum resident set size (KB) = 787652 + 0: The total amount of wall time = 310.245637 + 0: The maximum resident set size (KB) = 792288 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7239,14 +7239,14 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.822143 - 0: The maximum resident set size (KB) = 744252 + 0: The total amount of wall time = 351.212745 + 0: The maximum resident set size (KB) = 742052 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7285,42 +7285,42 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 521.306413 - 0: The maximum resident set size (KB) = 658560 + 0: The total amount of wall time = 523.365049 + 0: The maximum resident set size (KB) = 654028 Test 218 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.698259 - 0: The maximum resident set size (KB) = 616960 + 0: The total amount of wall time = 182.460409 + 0: The maximum resident set size (KB) = 615536 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.413040 - 0: The maximum resident set size (KB) = 582464 + 0: The total amount of wall time = 184.781196 + 0: The maximum resident set size (KB) = 580628 Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_control_gnu Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7336,40 +7336,40 @@ Checking test 221 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 242.794066 - 0: The maximum resident set size (KB) = 954460 + 0: The total amount of wall time = 241.363461 + 0: The maximum resident set size (KB) = 953056 Test 221 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_2threads_gnu Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.983873 - 0: The maximum resident set size (KB) = 995376 + 0: The total amount of wall time = 102.138322 + 0: The maximum resident set size (KB) = 997208 Test 222 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_restart_mismatch_gnu Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.047727 - 0: The maximum resident set size (KB) = 610112 + 0: The total amount of wall time = 125.968301 + 0: The maximum resident set size (KB) = 611292 Test 223 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7416,98 +7416,98 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.263737 - 0: The maximum resident set size (KB) = 764876 + 0: The total amount of wall time = 404.322058 + 0: The maximum resident set size (KB) = 771608 Test 224 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_dyn32_phy32_gnu Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.620635 - 0: The maximum resident set size (KB) = 760396 + 0: The total amount of wall time = 137.170697 + 0: The maximum resident set size (KB) = 754952 Test 225 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_dyn32_phy32_gnu Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.100644 - 0: The maximum resident set size (KB) = 754556 + 0: The total amount of wall time = 133.914407 + 0: The maximum resident set size (KB) = 751296 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_gnu Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.996879 - 0: The maximum resident set size (KB) = 971384 + 0: The total amount of wall time = 416.441863 + 0: The maximum resident set size (KB) = 970620 Test 227 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.501979 - 0: The maximum resident set size (KB) = 1004660 + 0: The total amount of wall time = 251.372351 + 0: The maximum resident set size (KB) = 1013728 Test 228 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/conus13km_radar_tten_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 419.541075 - 0: The maximum resident set size (KB) = 1037748 + 0: The total amount of wall time = 422.016078 + 0: The maximum resident set size (KB) = 1032852 Test 229 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.009880 - 0: The maximum resident set size (KB) = 772128 + 0: The total amount of wall time = 143.193078 + 0: The maximum resident set size (KB) = 780996 Test 230 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7572,14 +7572,14 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 625.782832 - 0: The maximum resident set size (KB) = 1512588 + 0: The total amount of wall time = 637.002307 + 0: The maximum resident set size (KB) = 1505104 Test 231 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7641,14 +7641,14 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 410.627213 - 0: The maximum resident set size (KB) = 1402584 + 0: The total amount of wall time = 409.444547 + 0: The maximum resident set size (KB) = 1406256 Test 232 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7701,14 +7701,14 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.692501 - 0: The maximum resident set size (KB) = 1517688 + 0: The total amount of wall time = 356.665016 + 0: The maximum resident set size (KB) = 1519552 Test 233 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7772,14 +7772,14 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1416.005911 - 0: The maximum resident set size (KB) = 1381688 + 0: The total amount of wall time = 1425.224878 + 0: The maximum resident set size (KB) = 1376768 Test 234 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,25 +7831,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 714.596409 - 0: The maximum resident set size (KB) = 1386272 + 0: The total amount of wall time = 720.796148 + 0: The maximum resident set size (KB) = 1389112 Test 235 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_8411/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.005496 - 0: The maximum resident set size (KB) = 690100 + 0: The total amount of wall time = 173.934477 + 0: The maximum resident set size (KB) = 687472 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 06:46:50 UTC 2023 -Elapsed time: 01h:45m:55s. Have a nice day! +Fri Sep 22 23:39:34 UTC 2023 +Elapsed time: 01h:36m:50s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ec2d02f1d9..5ac711eb43 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,72 +1,72 @@ -Thu Sep 21 08:50:24 CDT 2023 +Sun Sep 24 09:27:56 CDT 2023 Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 203 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 191 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 525 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 193 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 321 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 389 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 622 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 399 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 559 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 573 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 135 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 587 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 178 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 652 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 581 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 517 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 546 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 242 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 546 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 316 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 658 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 145 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 254 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 734 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 152 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 334 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 273 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 723 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 132 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 192 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 150 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 537 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 176 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 172 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 264 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 390 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 167 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 535 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 373 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 407 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 116 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 175 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 183 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 508 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 559 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 226 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 673 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 127 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 223 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 730 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 830 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 247 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 717 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 359 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.129533 - 0: The maximum resident set size (KB) = 1885312 + 0: The total amount of wall time = 440.695542 + 0: The maximum resident set size (KB) = 1897468 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.767902 - 0: The maximum resident set size (KB) = 1727228 + 0: The total amount of wall time = 483.128288 + 0: The maximum resident set size (KB) = 1725192 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.786070 - 0: The maximum resident set size (KB) = 2038716 + 0: The total amount of wall time = 437.765442 + 0: The maximum resident set size (KB) = 2056408 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 242.889260 - 0: The maximum resident set size (KB) = 1924052 + 0: The total amount of wall time = 246.518326 + 0: The maximum resident set size (KB) = 1919992 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.832031 - 0: The maximum resident set size (KB) = 1976616 + 0: The total amount of wall time = 438.925000 + 0: The maximum resident set size (KB) = 1966160 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +466,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 247.186691 - 0: The maximum resident set size (KB) = 1541720 + 0: The total amount of wall time = 238.684158 + 0: The maximum resident set size (KB) = 1558508 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,14 +526,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.229788 - 0: The maximum resident set size (KB) = 2472280 + 0: The total amount of wall time = 536.612757 + 0: The maximum resident set size (KB) = 2465732 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +586,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.949142 - 0: The maximum resident set size (KB) = 2045684 + 0: The total amount of wall time = 449.829157 + 0: The maximum resident set size (KB) = 2040024 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +646,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.385624 - 0: The maximum resident set size (KB) = 1882604 + 0: The total amount of wall time = 378.404827 + 0: The maximum resident set size (KB) = 1879040 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.496640 - 0: The maximum resident set size (KB) = 2065740 + 0: The total amount of wall time = 436.024376 + 0: The maximum resident set size (KB) = 2036600 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +778,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 903.843153 - 0: The maximum resident set size (KB) = 2802468 + 0: The total amount of wall time = 883.394853 + 0: The maximum resident set size (KB) = 2795568 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +838,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 330.051956 - 0: The maximum resident set size (KB) = 2812496 + 0: The total amount of wall time = 335.129569 + 0: The maximum resident set size (KB) = 2824540 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 532.602052 - 0: The maximum resident set size (KB) = 3608832 + 0: The total amount of wall time = 534.365049 + 0: The maximum resident set size (KB) = 3601416 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.377434 - 0: The maximum resident set size (KB) = 3520392 + 0: The total amount of wall time = 345.002415 + 0: The maximum resident set size (KB) = 3511192 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1019,14 +1019,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.307076 - 0: The maximum resident set size (KB) = 1784272 + 0: The total amount of wall time = 412.623778 + 0: The maximum resident set size (KB) = 1787200 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1088,14 +1088,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 237.558139 - 0: The maximum resident set size (KB) = 1817988 + 0: The total amount of wall time = 237.620224 + 0: The maximum resident set size (KB) = 1827772 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1148,14 +1148,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 427.656862 - 0: The maximum resident set size (KB) = 2033508 + 0: The total amount of wall time = 435.989715 + 0: The maximum resident set size (KB) = 2028296 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 295.177801 - 0: The maximum resident set size (KB) = 1800212 + 0: The total amount of wall time = 299.247827 + 0: The maximum resident set size (KB) = 1795712 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1276,14 +1276,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 235.117738 - 0: The maximum resident set size (KB) = 1827884 + 0: The total amount of wall time = 239.807190 + 0: The maximum resident set size (KB) = 1827480 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1333,14 +1333,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 455.578404 - 0: The maximum resident set size (KB) = 2832856 + 0: The total amount of wall time = 448.184276 + 0: The maximum resident set size (KB) = 2838336 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1405,14 +1405,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 416.628664 - 0: The maximum resident set size (KB) = 2051344 + 0: The total amount of wall time = 426.460972 + 0: The maximum resident set size (KB) = 2074036 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.607601 - 0: The maximum resident set size (KB) = 774664 + 0: The total amount of wall time = 280.570986 + 0: The maximum resident set size (KB) = 774376 Test 022 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1457,20 +1457,20 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 114.038112 - 0: The maximum resident set size (KB) = 688216 + 0: The total amount of wall time = 116.588718 + 0: The maximum resident set size (KB) = 674492 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK @@ -1479,14 +1479,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 984.717840 - 0: The maximum resident set size (KB) = 686720 + 0: The total amount of wall time = 1029.344484 + 0: The maximum resident set size (KB) = 680820 Test 024 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 167.478774 - 0: The maximum resident set size (KB) = 680788 + 0: The total amount of wall time = 174.815293 + 0: The maximum resident set size (KB) = 679816 Test 025 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1515,14 +1515,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.879581 - 0: The maximum resident set size (KB) = 682512 + 0: The total amount of wall time = 212.945967 + 0: The maximum resident set size (KB) = 673124 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 336.915955 -0: The maximum resident set size (KB) = 817352 +0: The total amount of wall time = 339.933842 +0: The maximum resident set size (KB) = 820984 Test 027 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.971994 - 0: The maximum resident set size (KB) = 930380 + 0: The total amount of wall time = 474.734730 + 0: The maximum resident set size (KB) = 905944 Test 028 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1597,14 +1597,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 459.417712 - 0: The maximum resident set size (KB) = 1602880 + 0: The total amount of wall time = 478.885727 + 0: The maximum resident set size (KB) = 1571444 Test 029 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1647,14 +1647,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.662868 - 0: The maximum resident set size (KB) = 1653160 + 0: The total amount of wall time = 414.062567 + 0: The maximum resident set size (KB) = 1650464 Test 030 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1665,28 +1665,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 139.970972 - 0: The maximum resident set size (KB) = 664748 + 0: The total amount of wall time = 142.049180 + 0: The maximum resident set size (KB) = 680552 Test 031 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 42.392163 - 0: The maximum resident set size (KB) = 609056 + 0: The total amount of wall time = 137.588152 + 0: The maximum resident set size (KB) = 612336 Test 032 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1697,14 +1697,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 132.001112 - 0: The maximum resident set size (KB) = 670484 + 0: The total amount of wall time = 135.745287 + 0: The maximum resident set size (KB) = 675912 Test 033 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.165537 - 0: The maximum resident set size (KB) = 710960 + 0: The total amount of wall time = 221.359381 + 0: The maximum resident set size (KB) = 707444 Test 034 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.345718 - 0: The maximum resident set size (KB) = 705236 + 0: The total amount of wall time = 200.994709 + 0: The maximum resident set size (KB) = 706716 Test 035 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.718911 - 0: The maximum resident set size (KB) = 1622284 + 0: The total amount of wall time = 210.016398 + 0: The maximum resident set size (KB) = 1623480 Test 036 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 78.162201 - 0: The maximum resident set size (KB) = 990920 + 0: The total amount of wall time = 135.919462 + 0: The maximum resident set size (KB) = 990112 Test 037 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.705744 - 0: The maximum resident set size (KB) = 1636436 + 0: The total amount of wall time = 157.772768 + 0: The maximum resident set size (KB) = 1644040 Test 038 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 81.242706 - 0: The maximum resident set size (KB) = 899944 + 0: The total amount of wall time = 139.491561 + 0: The maximum resident set size (KB) = 914908 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,14 +1991,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.422167 - 0: The maximum resident set size (KB) = 1617428 + 0: The total amount of wall time = 244.921326 + 0: The maximum resident set size (KB) = 1623868 Test 040 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.529544 - 0: The maximum resident set size (KB) = 1708164 + 0: The total amount of wall time = 193.174575 + 0: The maximum resident set size (KB) = 1704656 Test 041 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 274.544358 - 0: The maximum resident set size (KB) = 1627612 + 0: The total amount of wall time = 281.621151 + 0: The maximum resident set size (KB) = 1633940 Test 042 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.456996 - 0: The maximum resident set size (KB) = 1700068 + 0: The total amount of wall time = 298.866410 + 0: The maximum resident set size (KB) = 1696680 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.629164 - 0: The maximum resident set size (KB) = 1631260 + 0: The total amount of wall time = 195.179355 + 0: The maximum resident set size (KB) = 1637424 Test 044 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2229,14 +2229,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.993643 - 0: The maximum resident set size (KB) = 1637268 + 0: The total amount of wall time = 170.239066 + 0: The maximum resident set size (KB) = 1639552 Test 045 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2247,28 +2247,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 253.416221 - 0: The maximum resident set size (KB) = 1227228 + 0: The total amount of wall time = 260.126528 + 0: The maximum resident set size (KB) = 1232448 Test 046 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 127.727405 - 0: The maximum resident set size (KB) = 1217184 + 0: The total amount of wall time = 144.237149 + 0: The maximum resident set size (KB) = 1215188 Test 047 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2279,28 +2279,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.747712 - 0: The maximum resident set size (KB) = 1229696 + 0: The total amount of wall time = 259.016388 + 0: The maximum resident set size (KB) = 1234004 Test 048 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 130.741232 - 0: The maximum resident set size (KB) = 1211272 + 0: The total amount of wall time = 143.116954 + 0: The maximum resident set size (KB) = 1209608 Test 049 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2311,14 +2311,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.233998 - 0: The maximum resident set size (KB) = 1210964 + 0: The total amount of wall time = 274.937700 + 0: The maximum resident set size (KB) = 1213712 Test 050 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 156.366830 - 0: The maximum resident set size (KB) = 1149128 + 0: The total amount of wall time = 155.863335 + 0: The maximum resident set size (KB) = 1152100 Test 051 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2344,22 +2344,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 252.577248 - 0: The maximum resident set size (KB) = 1485600 + 0: The total amount of wall time = 252.761469 + 0: The maximum resident set size (KB) = 1494624 Test 052 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......ERROR + Comparing phyf006.nc .........OK + + 0: The total amount of wall time = 263.481969 + 0: The maximum resident set size (KB) = 1215844 + +Test 053 regional_netcdf_parallel_intel PASS Tries: 2 + -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2376,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 246.531605 - 0: The maximum resident set size (KB) = 1228100 + 0: The total amount of wall time = 260.444549 + 0: The maximum resident set size (KB) = 1234196 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2394,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.404350 - 0: The maximum resident set size (KB) = 1107384 + 0: The total amount of wall time = 323.448314 + 0: The maximum resident set size (KB) = 1096460 Test 055 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2442,14 +2448,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.567677 - 0: The maximum resident set size (KB) = 1396484 + 0: The total amount of wall time = 407.516879 + 0: The maximum resident set size (KB) = 1392328 Test 056 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2460,14 +2466,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 248.173877 - 0: The maximum resident set size (KB) = 1322760 + 0: The total amount of wall time = 203.944132 + 0: The maximum resident set size (KB) = 1313508 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2514,14 +2520,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.378059 - 0: The maximum resident set size (KB) = 1343912 + 0: The total amount of wall time = 421.588190 + 0: The maximum resident set size (KB) = 1323900 Test 058 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2568,14 +2574,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.264041 - 0: The maximum resident set size (KB) = 1547540 + 0: The total amount of wall time = 372.965844 + 0: The maximum resident set size (KB) = 1556456 Test 059 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2614,14 +2620,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.491372 - 0: The maximum resident set size (KB) = 1235392 + 0: The total amount of wall time = 199.266504 + 0: The maximum resident set size (KB) = 1227932 Test 060 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2668,14 +2674,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.971663 - 0: The maximum resident set size (KB) = 1413768 + 0: The total amount of wall time = 392.710141 + 0: The maximum resident set size (KB) = 1419792 Test 061 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2728,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.347037 - 0: The maximum resident set size (KB) = 1366612 + 0: The total amount of wall time = 413.359972 + 0: The maximum resident set size (KB) = 1359304 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2768,14 +2774,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.770694 - 0: The maximum resident set size (KB) = 1267592 + 0: The total amount of wall time = 297.354849 + 0: The maximum resident set size (KB) = 1280720 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_intel Checking test 064 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2822,14 +2828,14 @@ Checking test 064 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.750675 - 0: The maximum resident set size (KB) = 1352224 + 0: The total amount of wall time = 378.063579 + 0: The maximum resident set size (KB) = 1351560 Test 064 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_intel Checking test 065 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2882,14 @@ Checking test 065 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 371.890608 - 0: The maximum resident set size (KB) = 1161112 + 0: The total amount of wall time = 378.612258 + 0: The maximum resident set size (KB) = 1189108 Test 065 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2930,14 +2936,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.060339 - 0: The maximum resident set size (KB) = 1286532 + 0: The total amount of wall time = 434.336730 + 0: The maximum resident set size (KB) = 1286844 Test 066 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2984,42 +2990,42 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.310973 - 0: The maximum resident set size (KB) = 1258972 + 0: The total amount of wall time = 352.857464 + 0: The maximum resident set size (KB) = 1256204 Test 067 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 296.341115 - 0: The maximum resident set size (KB) = 1216640 + 0: The total amount of wall time = 285.448337 + 0: The maximum resident set size (KB) = 1214568 Test 068 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_intel Checking test 069 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 295.186227 - 0: The maximum resident set size (KB) = 1096124 + 0: The total amount of wall time = 289.428973 + 0: The maximum resident set size (KB) = 1075300 Test 069 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3066,14 +3072,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.247643 - 0: The maximum resident set size (KB) = 1380180 + 0: The total amount of wall time = 380.784473 + 0: The maximum resident set size (KB) = 1390052 Test 070 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3088,14 +3094,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 462.296670 - 0: The maximum resident set size (KB) = 948572 + 0: The total amount of wall time = 520.415703 + 0: The maximum resident set size (KB) = 954208 Test 071 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3110,14 +3116,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 450.918102 - 0: The maximum resident set size (KB) = 1082952 + 0: The total amount of wall time = 451.097852 + 0: The maximum resident set size (KB) = 1090648 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_gf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_gf_intel Checking test 073 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3164,14 +3170,14 @@ Checking test 073 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.422041 - 0: The maximum resident set size (KB) = 1403696 + 0: The total amount of wall time = 393.266174 + 0: The maximum resident set size (KB) = 1397168 Test 073 hrrr_gf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_c3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_c3_intel Checking test 074 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3218,14 +3224,14 @@ Checking test 074 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.401063 - 0: The maximum resident set size (KB) = 1403868 + 0: The total amount of wall time = 397.979525 + 0: The maximum resident set size (KB) = 1423400 Test 074 hrrr_c3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3236,14 +3242,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 298.426686 - 0: The maximum resident set size (KB) = 975048 + 0: The total amount of wall time = 304.774491 + 0: The maximum resident set size (KB) = 952348 Test 075 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3254,14 +3260,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 295.232394 - 0: The maximum resident set size (KB) = 954664 + 0: The total amount of wall time = 298.918073 + 0: The maximum resident set size (KB) = 976692 Test 076 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3272,26 +3278,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.680584 - 0: The maximum resident set size (KB) = 931336 + 0: The total amount of wall time = 166.506668 + 0: The maximum resident set size (KB) = 930224 Test 077 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 100.696779 - 0: The maximum resident set size (KB) = 840076 + 0: The total amount of wall time = 104.655472 + 0: The maximum resident set size (KB) = 853256 Test 078 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3338,14 +3344,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.893188 - 0: The maximum resident set size (KB) = 1623616 + 0: The total amount of wall time = 134.714806 + 0: The maximum resident set size (KB) = 1621504 Test 079 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3356,14 +3362,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 231.629449 - 0: The maximum resident set size (KB) = 1227852 + 0: The total amount of wall time = 229.012615 + 0: The maximum resident set size (KB) = 1231100 Test 080 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3390,336 +3396,336 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 123.239851 - 0: The maximum resident set size (KB) = 808504 + 0: The total amount of wall time = 123.523561 + 0: The maximum resident set size (KB) = 815148 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.904500 - 0: The maximum resident set size (KB) = 805256 + 0: The total amount of wall time = 151.773726 + 0: The maximum resident set size (KB) = 813180 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.236103 - 0: The maximum resident set size (KB) = 811256 + 0: The total amount of wall time = 139.526506 + 0: The maximum resident set size (KB) = 825308 Test 083 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.540014 - 0: The maximum resident set size (KB) = 815684 + 0: The total amount of wall time = 124.260771 + 0: The maximum resident set size (KB) = 820816 Test 084 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.615184 - 0: The maximum resident set size (KB) = 854488 + 0: The total amount of wall time = 193.975092 + 0: The maximum resident set size (KB) = 866840 Test 085 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.421184 - 0: The maximum resident set size (KB) = 855772 + 0: The total amount of wall time = 190.467903 + 0: The maximum resident set size (KB) = 862268 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.801249 - 0: The maximum resident set size (KB) = 825432 + 0: The total amount of wall time = 131.090741 + 0: The maximum resident set size (KB) = 818336 Test 087 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.875633 - 0: The maximum resident set size (KB) = 864560 + 0: The total amount of wall time = 128.494022 + 0: The maximum resident set size (KB) = 861328 Test 088 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.836476 - 0: The maximum resident set size (KB) = 1631100 + 0: The total amount of wall time = 145.053585 + 0: The maximum resident set size (KB) = 1648332 Test 089 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 844.340352 - 0: The maximum resident set size (KB) = 1229192 + 0: The total amount of wall time = 841.643758 + 0: The maximum resident set size (KB) = 1226920 Test 090 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.976946 - 0: The maximum resident set size (KB) = 1230952 + 0: The total amount of wall time = 236.007997 + 0: The maximum resident set size (KB) = 1245652 Test 091 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.106075 - 0: The maximum resident set size (KB) = 1193300 + 0: The total amount of wall time = 227.067978 + 0: The maximum resident set size (KB) = 1197844 Test 092 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.828260 - 0: The maximum resident set size (KB) = 1216252 + 0: The total amount of wall time = 230.823054 + 0: The maximum resident set size (KB) = 1224356 Test 093 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.638133 - 0: The maximum resident set size (KB) = 1329300 + 0: The total amount of wall time = 242.365565 + 0: The maximum resident set size (KB) = 1327280 Test 094 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.575300 - 0: The maximum resident set size (KB) = 1218980 + 0: The total amount of wall time = 238.796865 + 0: The maximum resident set size (KB) = 1220236 Test 095 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.785283 - 0: The maximum resident set size (KB) = 1229800 + 0: The total amount of wall time = 239.583793 + 0: The maximum resident set size (KB) = 1225588 Test 096 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.349453 - 0: The maximum resident set size (KB) = 1227928 + 0: The total amount of wall time = 232.631768 + 0: The maximum resident set size (KB) = 1236452 Test 097 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.670314 - 0: The maximum resident set size (KB) = 1246412 + 0: The total amount of wall time = 236.334889 + 0: The maximum resident set size (KB) = 1210156 Test 098 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.769301 - 0: The maximum resident set size (KB) = 1212888 + 0: The total amount of wall time = 230.904498 + 0: The maximum resident set size (KB) = 1230792 Test 099 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.718413 - 0: The maximum resident set size (KB) = 1206880 + 0: The total amount of wall time = 232.679870 + 0: The maximum resident set size (KB) = 1222092 Test 100 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 385.162259 - 0: The maximum resident set size (KB) = 1220780 + 0: The total amount of wall time = 384.417136 + 0: The maximum resident set size (KB) = 1238056 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.363176 - 0: The maximum resident set size (KB) = 1199252 + 0: The total amount of wall time = 228.076949 + 0: The maximum resident set size (KB) = 1201216 Test 102 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.138258 - 0: The maximum resident set size (KB) = 1225992 + 0: The total amount of wall time = 286.215674 + 0: The maximum resident set size (KB) = 1229404 Test 103 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.039120 - 0: The maximum resident set size (KB) = 1231900 + 0: The total amount of wall time = 232.863194 + 0: The maximum resident set size (KB) = 1234272 Test 104 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3730,14 +3736,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 197.555303 - 0: The maximum resident set size (KB) = 1215428 + 0: The total amount of wall time = 203.018290 + 0: The maximum resident set size (KB) = 1258108 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn32_phy32_intel Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3784,14 +3790,14 @@ Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.480558 - 0: The maximum resident set size (KB) = 1222328 + 0: The total amount of wall time = 319.978580 + 0: The maximum resident set size (KB) = 1229420 Test 106 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_dyn32_phy32_intel Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3838,14 +3844,14 @@ Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.066017 - 0: The maximum resident set size (KB) = 1114456 + 0: The total amount of wall time = 168.895052 + 0: The maximum resident set size (KB) = 1109784 Test 107 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_dyn32_phy32_intel Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3892,14 +3898,14 @@ Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.175060 - 0: The maximum resident set size (KB) = 1016540 + 0: The total amount of wall time = 178.143735 + 0: The maximum resident set size (KB) = 1029584 Test 108 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_dyn32_phy32_intel Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3946,14 +3952,14 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.800703 - 0: The maximum resident set size (KB) = 1345164 + 0: The total amount of wall time = 312.382133 + 0: The maximum resident set size (KB) = 1335308 Test 109 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_dyn32_phy32_intel Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4000,14 +4006,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.800993 - 0: The maximum resident set size (KB) = 1064652 + 0: The total amount of wall time = 162.520412 + 0: The maximum resident set size (KB) = 1068112 Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_dyn32_phy32_intel Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4054,14 +4060,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.057648 - 0: The maximum resident set size (KB) = 1065508 + 0: The total amount of wall time = 183.198066 + 0: The maximum resident set size (KB) = 1082276 Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_dyn32_phy32_intel Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4100,42 +4106,42 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.381096 - 0: The maximum resident set size (KB) = 1142936 + 0: The total amount of wall time = 230.812476 + 0: The maximum resident set size (KB) = 1140368 Test 112 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_dyn32_phy32_intel Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.863318 - 0: The maximum resident set size (KB) = 987224 + 0: The total amount of wall time = 88.149998 + 0: The maximum resident set size (KB) = 984104 Test 113 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.574399 - 0: The maximum resident set size (KB) = 905804 + 0: The total amount of wall time = 89.443431 + 0: The maximum resident set size (KB) = 915456 Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4151,40 +4157,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 98.270030 - 0: The maximum resident set size (KB) = 1357064 + 0: The total amount of wall time = 102.493478 + 0: The maximum resident set size (KB) = 1344036 Test 115 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 37.340592 - 0: The maximum resident set size (KB) = 1253192 + 0: The total amount of wall time = 36.408256 + 0: The maximum resident set size (KB) = 1245796 Test 116 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 53.733692 - 0: The maximum resident set size (KB) = 1244892 + 0: The total amount of wall time = 60.761441 + 0: The maximum resident set size (KB) = 1226096 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4231,123 +4237,123 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.050713 - 0: The maximum resident set size (KB) = 1247264 + 0: The total amount of wall time = 223.090104 + 0: The maximum resident set size (KB) = 1275048 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.797779 - 0: The maximum resident set size (KB) = 1077216 + 0: The total amount of wall time = 233.839768 + 0: The maximum resident set size (KB) = 1085868 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.390370 - 0: The maximum resident set size (KB) = 1076520 + 0: The total amount of wall time = 224.018575 + 0: The maximum resident set size (KB) = 1080032 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 695.761522 - 0: The maximum resident set size (KB) = 1389448 + 0: The total amount of wall time = 695.349280 + 0: The maximum resident set size (KB) = 1387956 Test 121 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_2threads_intel Checking test 122 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.050046 - 0: The maximum resident set size (KB) = 1283096 + 0: The total amount of wall time = 397.990521 + 0: The maximum resident set size (KB) = 1286052 Test 122 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_radar_tten_debug_intel Checking test 123 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 696.214463 - 0: The maximum resident set size (KB) = 1463260 + 0: The total amount of wall time = 696.791716 + 0: The maximum resident set size (KB) = 1461912 Test 123 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_debug_intel Checking test 124 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.381613 - 0: The maximum resident set size (KB) = 1215668 + 0: The total amount of wall time = 228.344147 + 0: The maximum resident set size (KB) = 1179928 Test 124 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_intel Checking test 125 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 197.363595 - 0: The maximum resident set size (KB) = 1470268 + 0: The total amount of wall time = 202.169238 + 0: The maximum resident set size (KB) = 1476920 Test 125 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_thompson_gfdlsf_intel Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 242.617407 - 0: The maximum resident set size (KB) = 1819092 + 0: The total amount of wall time = 249.483692 + 0: The maximum resident set size (KB) = 1805940 Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_ocn_intel Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4356,14 +4362,14 @@ Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 346.912396 - 0: The maximum resident set size (KB) = 1791832 + 0: The total amount of wall time = 345.540447 + 0: The maximum resident set size (KB) = 1791632 Test 127 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_wav_intel Checking test 128 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4372,14 +4378,14 @@ Checking test 128 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 830.731982 - 0: The maximum resident set size (KB) = 1809736 + 0: The total amount of wall time = 850.988033 + 0: The maximum resident set size (KB) = 1827888 Test 128 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_ocn_wav_intel Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4390,14 +4396,14 @@ Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 872.519894 - 0: The maximum resident set size (KB) = 1855588 + 0: The total amount of wall time = 925.784623 + 0: The maximum resident set size (KB) = 1847280 Test 129 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_1nest_atm_intel Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4419,14 +4425,14 @@ Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 279.535819 - 0: The maximum resident set size (KB) = 790464 + 0: The total amount of wall time = 280.353722 + 0: The maximum resident set size (KB) = 788160 Test 130 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_1nest_atm_qr_intel Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4448,14 +4454,14 @@ Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 299.599998 - 0: The maximum resident set size (KB) = 603956 + 0: The total amount of wall time = 307.254257 + 0: The maximum resident set size (KB) = 606328 Test 131 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_telescopic_2nests_atm_intel Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4464,14 +4470,14 @@ Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 312.012356 - 0: The maximum resident set size (KB) = 791212 + 0: The total amount of wall time = 331.870819 + 0: The maximum resident set size (KB) = 788112 Test 132 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_1nest_atm_intel Checking test 133 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4518,14 +4524,14 @@ Checking test 133 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 127.188984 - 0: The maximum resident set size (KB) = 465400 + 0: The total amount of wall time = 142.590395 + 0: The maximum resident set size (KB) = 463920 Test 133 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_1nest_atm_qr_intel Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4572,14 +4578,14 @@ Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 148.689858 - 0: The maximum resident set size (KB) = 438672 + 0: The total amount of wall time = 166.306622 + 0: The maximum resident set size (KB) = 438552 Test 134 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4661,14 +4667,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 353.925177 - 0: The maximum resident set size (KB) = 551928 + 0: The total amount of wall time = 360.953130 + 0: The maximum resident set size (KB) = 554816 Test 135 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_multiple_4nests_atm_qr_intel Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4750,14 +4756,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 421.546846 - 0: The maximum resident set size (KB) = 536472 + 0: The total amount of wall time = 429.804783 + 0: The maximum resident set size (KB) = 545020 Test 136 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4772,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 178.306187 - 0: The maximum resident set size (KB) = 794840 + 0: The total amount of wall time = 179.449705 + 0: The maximum resident set size (KB) = 795460 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4795,14 +4801,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 165.826106 - 0: The maximum resident set size (KB) = 798328 + 0: The total amount of wall time = 166.385238 + 0: The maximum resident set size (KB) = 795172 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4824,14 +4830,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 193.057682 - 0: The maximum resident set size (KB) = 618304 + 0: The total amount of wall time = 196.693479 + 0: The maximum resident set size (KB) = 616424 Test 139 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4840,42 +4846,42 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.420294 - 0: The maximum resident set size (KB) = 847388 + 0: The total amount of wall time = 220.973633 + 0: The maximum resident set size (KB) = 843512 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_storm_following_1nest_atm_intel Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 52.967978 - 0: The maximum resident set size (KB) = 470544 + 0: The total amount of wall time = 50.529706 + 0: The maximum resident set size (KB) = 473220 Test 141 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 614.538529 - 0: The maximum resident set size (KB) = 843412 + 0: The total amount of wall time = 620.086693 + 0: The maximum resident set size (KB) = 850144 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4886,14 +4892,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 1059.230032 - 0: The maximum resident set size (KB) = 894692 + 0: The total amount of wall time = 970.600724 + 0: The maximum resident set size (KB) = 901296 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4901,14 +4907,14 @@ Checking test 144 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 288.111542 - 0: The maximum resident set size (KB) = 1777700 + 0: The total amount of wall time = 284.673573 + 0: The maximum resident set size (KB) = 1776844 Test 144 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4916,131 +4922,131 @@ Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 290.229390 - 0: The maximum resident set size (KB) = 1789264 + 0: The total amount of wall time = 290.482758 + 0: The maximum resident set size (KB) = 1761852 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_datm_cdeps_intel Checking test 146 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 978.149874 - 0: The maximum resident set size (KB) = 1340744 + 0: The total amount of wall time = 980.007697 + 0: The maximum resident set size (KB) = 1341512 Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_intel Checking test 147 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.744634 - 0: The maximum resident set size (KB) = 1124904 + 0: The total amount of wall time = 124.869653 + 0: The maximum resident set size (KB) = 1138000 Test 147 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_restart_cfsr_intel Checking test 148 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 76.545179 - 0: The maximum resident set size (KB) = 1077224 + 0: The total amount of wall time = 78.239139 + 0: The maximum resident set size (KB) = 1070796 Test 148 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_gefs_intel Checking test 149 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.654903 - 0: The maximum resident set size (KB) = 1008576 + 0: The total amount of wall time = 120.465147 + 0: The maximum resident set size (KB) = 1003296 Test 149 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_iau_gefs_intel Checking test 150 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.376411 - 0: The maximum resident set size (KB) = 996044 + 0: The total amount of wall time = 122.189881 + 0: The maximum resident set size (KB) = 1006132 Test 150 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_stochy_gefs_intel Checking test 151 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.074364 - 0: The maximum resident set size (KB) = 993736 + 0: The total amount of wall time = 122.143471 + 0: The maximum resident set size (KB) = 1015232 Test 151 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_ciceC_cfsr_intel Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.589824 - 0: The maximum resident set size (KB) = 1128164 + 0: The total amount of wall time = 125.181473 + 0: The maximum resident set size (KB) = 1130580 Test 152 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_bulk_cfsr_intel Checking test 153 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.445565 - 0: The maximum resident set size (KB) = 1118320 + 0: The total amount of wall time = 122.902977 + 0: The maximum resident set size (KB) = 1126500 Test 153 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_bulk_gefs_intel Checking test 154 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.117275 - 0: The maximum resident set size (KB) = 1010132 + 0: The total amount of wall time = 118.186639 + 0: The maximum resident set size (KB) = 1002964 Test 154 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_mx025_cfsr_intel Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5049,14 +5055,14 @@ Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 316.180463 - 0: The maximum resident set size (KB) = 1140892 + 0: The total amount of wall time = 318.641262 + 0: The maximum resident set size (KB) = 1140476 Test 155 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_mx025_gefs_intel Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5065,77 +5071,77 @@ Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 309.850049 - 0: The maximum resident set size (KB) = 1132912 + 0: The total amount of wall time = 310.204104 + 0: The maximum resident set size (KB) = 1140976 Test 156 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_multiple_files_cfsr_intel Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.462389 - 0: The maximum resident set size (KB) = 1120408 + 0: The total amount of wall time = 122.733795 + 0: The maximum resident set size (KB) = 1136068 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_3072x1536_cfsr_intel Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.633958 - 0: The maximum resident set size (KB) = 2422296 + 0: The total amount of wall time = 179.397217 + 0: The maximum resident set size (KB) = 2365632 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_gfs_intel Checking test 159 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 177.962355 - 0: The maximum resident set size (KB) = 2360600 + 0: The total amount of wall time = 179.932499 + 0: The maximum resident set size (KB) = 2430336 Test 159 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_debug_cfsr_intel Checking test 160 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 293.471446 - 0: The maximum resident set size (KB) = 1063260 + 0: The total amount of wall time = 287.686826 + 0: The maximum resident set size (KB) = 1061124 Test 160 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_faster_intel Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.025690 - 0: The maximum resident set size (KB) = 1134932 + 0: The total amount of wall time = 121.820894 + 0: The maximum resident set size (KB) = 1144432 Test 161 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_lnd_gswp3_intel Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5144,14 +5150,14 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.821460 - 0: The maximum resident set size (KB) = 332012 + 0: The total amount of wall time = 7.154590 + 0: The maximum resident set size (KB) = 337232 Test 162 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_lnd_gswp3_rst_intel Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5160,14 +5166,14 @@ Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.396787 - 0: The maximum resident set size (KB) = 334904 + 0: The total amount of wall time = 9.050747 + 0: The maximum resident set size (KB) = 337396 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_atmlnd_sbs_intel Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5252,14 +5258,14 @@ Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 182.560903 - 0: The maximum resident set size (KB) = 1683896 + 0: The total amount of wall time = 184.802529 + 0: The maximum resident set size (KB) = 1689312 Test 164 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5302,14 +5308,14 @@ Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 82.878739 - 0: The maximum resident set size (KB) = 1677776 + 0: The total amount of wall time = 86.855014 + 0: The maximum resident set size (KB) = 1673108 Test 165 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_atmwav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5353,14 +5359,14 @@ Checking test 166 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 75.703635 - 0: The maximum resident set size (KB) = 689868 + 0: The total amount of wall time = 77.295021 + 0: The maximum resident set size (KB) = 696924 Test 166 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5404,14 +5410,14 @@ Checking test 167 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.189030 - 0: The maximum resident set size (KB) = 1772764 + 0: The total amount of wall time = 256.637872 + 0: The maximum resident set size (KB) = 1779384 Test 167 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5455,14 +5461,14 @@ Checking test 168 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.054011 - 0: The maximum resident set size (KB) = 1798124 + 0: The total amount of wall time = 253.225235 + 0: The maximum resident set size (KB) = 1798948 Test 168 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5506,14 +5512,14 @@ Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.632203 - 0: The maximum resident set size (KB) = 1802240 + 0: The total amount of wall time = 256.365180 + 0: The maximum resident set size (KB) = 1810632 Test 169 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_intel Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5529,14 +5535,14 @@ Checking test 170 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 539.397513 - 0: The maximum resident set size (KB) = 5462340 + 0: The total amount of wall time = 574.404578 + 0: The maximum resident set size (KB) = 5492488 Test 170 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_debug_intel Checking test 171 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5550,14 +5556,14 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 976.874370 - 0: The maximum resident set size (KB) = 4995148 + 0: The total amount of wall time = 954.260845 + 0: The maximum resident set size (KB) = 5002036 Test 171 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_faster_intel Checking test 172 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5573,14 +5579,14 @@ Checking test 172 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 463.548761 - 0: The maximum resident set size (KB) = 5498008 + 0: The total amount of wall time = 467.093629 + 0: The maximum resident set size (KB) = 5510144 Test 172 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_c48_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c48_gnu Checking test 173 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5619,14 +5625,14 @@ Checking test 173 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 572.837711 -The maximum resident set size (KB) = 756736 +The total amount of wall time = 580.870684 +The maximum resident set size (KB) = 759544 Test 173 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_gnu Checking test 174 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5637,14 +5643,14 @@ Checking test 174 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 124.696620 -The maximum resident set size (KB) = 564276 +The total amount of wall time = 124.739823 +The maximum resident set size (KB) = 566136 Test 174 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_gnu Checking test 175 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5655,14 +5661,14 @@ Checking test 175 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 208.095906 -The maximum resident set size (KB) = 570716 +The total amount of wall time = 210.025820 +The maximum resident set size (KB) = 570128 Test 175 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_gnu Checking test 176 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5709,14 +5715,14 @@ Checking test 176 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.965158 -The maximum resident set size (KB) = 1317456 +The total amount of wall time = 217.913272 +The maximum resident set size (KB) = 1322904 Test 176 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_flake_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_flake_gnu Checking test 177 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5727,14 +5733,14 @@ Checking test 177 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 250.536026 -The maximum resident set size (KB) = 611088 +The total amount of wall time = 251.935983 +The maximum resident set size (KB) = 605352 Test 177 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_gnu Checking test 178 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5781,14 +5787,14 @@ Checking test 178 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 443.773286 -The maximum resident set size (KB) = 915640 +The total amount of wall time = 462.067380 +The maximum resident set size (KB) = 917036 Test 178 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_decomp_gnu Checking test 179 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5835,14 +5841,14 @@ Checking test 179 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 460.154788 -The maximum resident set size (KB) = 914684 +The total amount of wall time = 465.677072 +The maximum resident set size (KB) = 916980 Test 179 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_gnu Checking test 180 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5889,14 +5895,14 @@ Checking test 180 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.280620 -The maximum resident set size (KB) = 983724 +The total amount of wall time = 416.054323 +The maximum resident set size (KB) = 981572 Test 180 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_gnu Checking test 181 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5935,14 +5941,14 @@ Checking test 181 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.730088 -The maximum resident set size (KB) = 782452 +The total amount of wall time = 228.283332 +The maximum resident set size (KB) = 780944 Test 181 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_gnu Checking test 182 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5989,14 +5995,14 @@ Checking test 182 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 450.730921 -The maximum resident set size (KB) = 913296 +The total amount of wall time = 461.829518 +The maximum resident set size (KB) = 912080 Test 182 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_decomp_gnu Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6043,14 +6049,14 @@ Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 458.869422 -The maximum resident set size (KB) = 915268 +The total amount of wall time = 473.807420 +The maximum resident set size (KB) = 914704 Test 183 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_sfcdiff_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_restart_gnu Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6089,14 +6095,14 @@ Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.433452 -The maximum resident set size (KB) = 789168 +The total amount of wall time = 335.228683 +The maximum resident set size (KB) = 789240 Test 184 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_gnu Checking test 185 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6143,14 +6149,14 @@ Checking test 185 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.642482 -The maximum resident set size (KB) = 911296 +The total amount of wall time = 457.357470 +The maximum resident set size (KB) = 913124 Test 185 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_gnu Checking test 186 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6197,14 +6203,14 @@ Checking test 186 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 443.340100 -The maximum resident set size (KB) = 921092 +The total amount of wall time = 453.377946 +The maximum resident set size (KB) = 923044 Test 186 hrrr_control_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_gnu Checking test 187 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6251,14 +6257,14 @@ Checking test 187 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.844487 -The maximum resident set size (KB) = 966584 +The total amount of wall time = 411.595269 +The maximum resident set size (KB) = 972276 Test 187 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_gnu Checking test 188 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6305,42 +6311,42 @@ Checking test 188 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.130433 -The maximum resident set size (KB) = 908380 +The total amount of wall time = 450.085048 +The maximum resident set size (KB) = 912772 Test 188 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_gnu Checking test 189 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 328.263925 -The maximum resident set size (KB) = 740120 +The total amount of wall time = 333.393806 +The maximum resident set size (KB) = 738300 Test 189 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_gnu Checking test 190 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 330.690385 -The maximum resident set size (KB) = 645984 +The total amount of wall time = 326.440217 +The maximum resident set size (KB) = 643328 Test 190 hrrr_control_restart_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_gnu Checking test 191 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6387,14 +6393,14 @@ Checking test 191 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 445.671313 -The maximum resident set size (KB) = 911544 +The total amount of wall time = 451.275261 +The maximum resident set size (KB) = 915732 Test 191 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_gf_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_gf_gnu Checking test 192 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6441,196 +6447,196 @@ Checking test 192 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 452.364111 -The maximum resident set size (KB) = 913324 +The total amount of wall time = 464.665212 +The maximum resident set size (KB) = 920340 Test 192 hrrr_gf_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_diag_debug_gnu Checking test 193 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 64.345725 -The maximum resident set size (KB) = 609556 +The total amount of wall time = 64.710697 +The maximum resident set size (KB) = 606452 Test 193 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_debug_gnu Checking test 194 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 360.166971 -The maximum resident set size (KB) = 860912 +The total amount of wall time = 373.156934 +The maximum resident set size (KB) = 857112 Test 194 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_gnu Checking test 195 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 107.584125 -The maximum resident set size (KB) = 929076 +The total amount of wall time = 109.290389 +The maximum resident set size (KB) = 929576 Test 195 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_gnu Checking test 196 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 104.433207 -The maximum resident set size (KB) = 922512 +The total amount of wall time = 106.838026 +The maximum resident set size (KB) = 925752 Test 196 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_diag_debug_gnu Checking test 197 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 115.836744 -The maximum resident set size (KB) = 1006356 +The total amount of wall time = 116.645447 +The maximum resident set size (KB) = 1015832 Test 197 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.504436 -The maximum resident set size (KB) = 926448 +The total amount of wall time = 179.004711 +The maximum resident set size (KB) = 926300 Test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_progcld_thompson_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_progcld_thompson_debug_gnu Checking test 199 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 107.142764 -The maximum resident set size (KB) = 927708 +The total amount of wall time = 108.234738 +The maximum resident set size (KB) = 932248 Test 199 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rrfs_v1beta_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_debug_gnu Checking test 200 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 105.758240 -The maximum resident set size (KB) = 921900 +The total amount of wall time = 108.687889 +The maximum resident set size (KB) = 927700 Test 200 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_ras_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_debug_gnu Checking test 201 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 61.632145 -The maximum resident set size (KB) = 559476 +The total amount of wall time = 64.802039 +The maximum resident set size (KB) = 560192 Test 201 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_stochy_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_debug_gnu Checking test 202 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 67.654235 -The maximum resident set size (KB) = 556812 +The total amount of wall time = 69.088627 +The maximum resident set size (KB) = 556748 Test 202 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/control_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_debug_p8_gnu Checking test 203 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 68.486156 -The maximum resident set size (KB) = 1311516 +The total amount of wall time = 68.077800 +The maximum resident set size (KB) = 1309212 Test 203 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_flake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_flake_debug_gnu Checking test 204 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.872691 -The maximum resident set size (KB) = 927364 +The total amount of wall time = 112.723264 +The maximum resident set size (KB) = 927576 Test 204 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_clm_lake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_clm_lake_debug_gnu Checking test 205 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 121.153363 -The maximum resident set size (KB) = 928088 +The total amount of wall time = 126.563820 +The maximum resident set size (KB) = 931080 Test 205 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn32_phy32_gnu Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6677,14 +6683,14 @@ Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.773994 -The maximum resident set size (KB) = 772076 +The total amount of wall time = 442.453157 +The maximum resident set size (KB) = 770876 Test 206 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_dyn32_phy32_gnu Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6731,14 +6737,14 @@ Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.383721 -The maximum resident set size (KB) = 769684 +The total amount of wall time = 243.973250 +The maximum resident set size (KB) = 771508 Test 207 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_qr_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_dyn32_phy32_gnu Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6785,14 +6791,14 @@ Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 224.142034 -The maximum resident set size (KB) = 780304 +The total amount of wall time = 230.751702 +The maximum resident set size (KB) = 779444 Test 208 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_dyn32_phy32_gnu Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6839,14 +6845,14 @@ Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 394.643831 -The maximum resident set size (KB) = 820768 +The total amount of wall time = 404.433127 +The maximum resident set size (KB) = 814560 Test 209 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_dyn32_phy32_gnu Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6893,14 +6899,14 @@ Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 201.928281 -The maximum resident set size (KB) = 807528 +The total amount of wall time = 208.648219 +The maximum resident set size (KB) = 804892 Test 210 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_dyn32_phy32_gnu Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6947,14 +6953,14 @@ Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 225.787746 -The maximum resident set size (KB) = 769868 +The total amount of wall time = 232.495230 +The maximum resident set size (KB) = 771048 Test 211 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_dyn32_phy32_gnu Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6993,42 +6999,42 @@ Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 317.388729 -The maximum resident set size (KB) = 689524 +The total amount of wall time = 321.722419 +The maximum resident set size (KB) = 687372 Test 212 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_dyn32_phy32_gnu Checking test 213 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 111.459266 -The maximum resident set size (KB) = 647244 +The total amount of wall time = 111.199018 +The maximum resident set size (KB) = 648536 Test 213 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_restart_qr_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 114.065128 -The maximum resident set size (KB) = 615028 +The total amount of wall time = 113.793200 +The maximum resident set size (KB) = 608792 Test 214 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_control_gnu Checking test 215 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7044,40 +7050,40 @@ Checking test 215 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 144.168991 -The maximum resident set size (KB) = 978404 +The total amount of wall time = 162.721879 +The maximum resident set size (KB) = 980880 Test 215 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_2threads_gnu Checking test 216 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.441909 -The maximum resident set size (KB) = 997204 +The total amount of wall time = 55.263003 +The maximum resident set size (KB) = 985820 Test 216 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_restart_mismatch_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_restart_mismatch_gnu Checking test 217 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.627346 -The maximum resident set size (KB) = 643848 +The total amount of wall time = 79.036425 +The maximum resident set size (KB) = 639268 Test 217 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_gnu Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7124,98 +7130,98 @@ Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.823863 -The maximum resident set size (KB) = 795624 +The total amount of wall time = 250.962564 +The maximum resident set size (KB) = 795628 Test 218 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_dyn32_phy32_gnu Checking test 219 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 103.094070 -The maximum resident set size (KB) = 782324 +The total amount of wall time = 106.778306 +The maximum resident set size (KB) = 784900 Test 219 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_dyn32_phy32_gnu Checking test 220 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 103.281427 -The maximum resident set size (KB) = 785660 +The total amount of wall time = 105.575391 +The maximum resident set size (KB) = 783924 Test 220 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_gnu Checking test 221 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 319.510263 -The maximum resident set size (KB) = 1000636 +The total amount of wall time = 316.238245 +The maximum resident set size (KB) = 1003868 Test 221 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_debug_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_2threads_gnu Checking test 222 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.198532 -The maximum resident set size (KB) = 1008712 +The total amount of wall time = 187.353554 +The maximum resident set size (KB) = 1007764 Test 222 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/conus13km_radar_tten_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_radar_tten_debug_gnu Checking test 223 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 315.728183 -The maximum resident set size (KB) = 1063848 +The total amount of wall time = 314.378766 +The maximum resident set size (KB) = 1064904 Test 223 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/rap_control_dyn64_phy32_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_debug_gnu Checking test 224 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.241412 -The maximum resident set size (KB) = 803652 +The total amount of wall time = 108.865585 +The maximum resident set size (KB) = 804760 Test 224 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_gnu Checking test 225 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7280,14 +7286,14 @@ Checking test 225 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 413.082646 -The maximum resident set size (KB) = 1595540 +The total amount of wall time = 410.104496 +The maximum resident set size (KB) = 1593800 Test 225 cpld_control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_nowave_noaero_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_nowave_noaero_p8_gnu Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7349,14 +7355,14 @@ Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 280.673336 -The maximum resident set size (KB) = 1425476 +The total amount of wall time = 277.099444 +The maximum resident set size (KB) = 1427348 Test 226 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_p8_gnu Checking test 227 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7409,14 +7415,14 @@ Checking test 227 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 215.095069 -The maximum resident set size (KB) = 1602380 +The total amount of wall time = 208.317314 +The maximum resident set size (KB) = 1600500 Test 227 cpld_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_control_pdlib_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_pdlib_p8_gnu Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7480,14 +7486,14 @@ Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 985.042648 -The maximum resident set size (KB) = 1403240 +The total amount of wall time = 984.394206 +The maximum resident set size (KB) = 1401824 Test 228 cpld_control_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/cpld_debug_pdlib_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_pdlib_p8_gnu Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7539,38 +7545,25 @@ Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 533.295246 -The maximum resident set size (KB) = 1407364 +The total amount of wall time = 531.262525 +The maximum resident set size (KB) = 1406552 Test 229 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1430908/datm_cdeps_control_cfsr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_gnu Checking test 230 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.737687 -The maximum resident set size (KB) = 751808 +The total amount of wall time = 136.631158 +The maximum resident set size (KB) = 753504 Test 230 datm_cdeps_control_cfsr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1505354/regional_netcdf_parallel_intel -Checking test 001 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 276.274290 - 0: The maximum resident set size (KB) = 1212440 - -Test 001 regional_netcdf_parallel_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 10:49:06 CDT 2023 -Elapsed time: 00h:15m:44s. Have a nice day! +Sun Sep 24 10:45:39 CDT 2023 +Elapsed time: 01h:17m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 6be1f7bf48..fa9b4fff3f 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Thu Sep 21 15:17:05 UTC 2023 +Sat Sep 23 03:42:08 UTC 2023 Start Regression test -Testing UFSWM Hash: 8d6689858eb46cf48e351d8f6190cfbd174a46fb +Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 409 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1978 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1786 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1731 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1769 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 297 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 123 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1789 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2476 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1753 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1794 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 318 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1940 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2036 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5524 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2031 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 296 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1901 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1708 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1791 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1789 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1757 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 139 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1748 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1845 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2441 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1901 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1812 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1840 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 287 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1952 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2079 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 299 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1990 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 425.300276 - 0: The maximum resident set size (KB) = 1756832 + 0: The total amount of wall time = 401.835880 + 0: The maximum resident set size (KB) = 1779296 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 284.044149 - 0: The maximum resident set size (KB) = 1623064 + 0: The total amount of wall time = 286.309531 + 0: The maximum resident set size (KB) = 1611748 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 466.404412 - 0: The maximum resident set size (KB) = 1795080 + 0: The total amount of wall time = 467.025805 + 0: The maximum resident set size (KB) = 1804356 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.045143 - 0: The maximum resident set size (KB) = 1693048 + 0: The total amount of wall time = 262.693928 + 0: The maximum resident set size (KB) = 1713820 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.837487 - 0: The maximum resident set size (KB) = 1810188 + 0: The total amount of wall time = 467.239092 + 0: The maximum resident set size (KB) = 1794972 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.126928 - 0: The maximum resident set size (KB) = 1523116 + 0: The total amount of wall time = 278.606479 + 0: The maximum resident set size (KB) = 1530740 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.123883 - 0: The maximum resident set size (KB) = 2196748 + 0: The total amount of wall time = 435.331991 + 0: The maximum resident set size (KB) = 2191268 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.592832 - 0: The maximum resident set size (KB) = 1790628 + 0: The total amount of wall time = 473.994175 + 0: The maximum resident set size (KB) = 1804924 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 389.186250 - 0: The maximum resident set size (KB) = 1750256 + 0: The total amount of wall time = 386.592158 + 0: The maximum resident set size (KB) = 1774304 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.455804 - 0: The maximum resident set size (KB) = 1798308 + 0: The total amount of wall time = 468.171121 + 0: The maximum resident set size (KB) = 1818528 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.766138 - 0: The maximum resident set size (KB) = 1633904 + 0: The total amount of wall time = 344.302588 + 0: The maximum resident set size (KB) = 1639284 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +839,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 348.809206 - 0: The maximum resident set size (KB) = 1684588 + 0: The total amount of wall time = 343.353077 + 0: The maximum resident set size (KB) = 1690180 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 690.858802 - 0: The maximum resident set size (KB) = 1812780 + 0: The total amount of wall time = 675.357518 + 0: The maximum resident set size (KB) = 1811992 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.600814 - 0: The maximum resident set size (KB) = 1655084 + 0: The total amount of wall time = 467.593962 + 0: The maximum resident set size (KB) = 1637532 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 346.474623 - 0: The maximum resident set size (KB) = 1677352 + 0: The total amount of wall time = 403.095973 + 0: The maximum resident set size (KB) = 1688984 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 802.177598 - 0: The maximum resident set size (KB) = 2783476 + 0: The total amount of wall time = 824.871318 + 0: The maximum resident set size (KB) = 2787504 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.290443 - 0: The maximum resident set size (KB) = 1798332 + 0: The total amount of wall time = 439.782334 + 0: The maximum resident set size (KB) = 1784936 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 250.750951 - 0: The maximum resident set size (KB) = 633000 + 0: The total amount of wall time = 297.187725 + 0: The maximum resident set size (KB) = 635992 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,36 +1208,36 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 184.641947 - 0: The maximum resident set size (KB) = 586180 + 0: The total amount of wall time = 236.436797 + 0: The maximum resident set size (KB) = 586376 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.713211 - 0: The maximum resident set size (KB) = 585224 + 0: The total amount of wall time = 258.827746 + 0: The maximum resident set size (KB) = 587956 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.007496 - 0: The maximum resident set size (KB) = 582604 + 0: The total amount of wall time = 190.579467 + 0: The maximum resident set size (KB) = 582020 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.116097 - 0: The maximum resident set size (KB) = 580416 + 0: The total amount of wall time = 191.174442 + 0: The maximum resident set size (KB) = 580636 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 595.230477 -0: The maximum resident set size (KB) = 804884 +0: The total amount of wall time = 591.821780 +0: The maximum resident set size (KB) = 806828 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 767.975210 - 0: The maximum resident set size (KB) = 705372 + 0: The total amount of wall time = 730.135202 + 0: The maximum resident set size (KB) = 709440 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 938.159905 - 0: The maximum resident set size (KB) = 1188692 + 0: The total amount of wall time = 940.632241 + 0: The maximum resident set size (KB) = 1174684 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 859.609361 - 0: The maximum resident set size (KB) = 1291760 + 0: The total amount of wall time = 811.397498 + 0: The maximum resident set size (KB) = 1307000 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.967202 - 0: The maximum resident set size (KB) = 587704 + 0: The total amount of wall time = 119.320740 + 0: The maximum resident set size (KB) = 586252 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 66.970489 - 0: The maximum resident set size (KB) = 457796 + 0: The total amount of wall time = 65.260788 + 0: The maximum resident set size (KB) = 463980 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.256428 - 0: The maximum resident set size (KB) = 589708 + 0: The total amount of wall time = 119.747722 + 0: The maximum resident set size (KB) = 590144 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.120528 - 0: The maximum resident set size (KB) = 584980 + 0: The total amount of wall time = 191.973491 + 0: The maximum resident set size (KB) = 583816 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.685744 - 0: The maximum resident set size (KB) = 585160 + 0: The total amount of wall time = 187.264554 + 0: The maximum resident set size (KB) = 576328 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.358144 - 0: The maximum resident set size (KB) = 1544444 + 0: The total amount of wall time = 227.569112 + 0: The maximum resident set size (KB) = 1561128 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.588602 - 0: The maximum resident set size (KB) = 836548 + 0: The total amount of wall time = 119.879762 + 0: The maximum resident set size (KB) = 833868 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.555131 - 0: The maximum resident set size (KB) = 1555584 + 0: The total amount of wall time = 231.241488 + 0: The maximum resident set size (KB) = 1556268 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.550184 - 0: The maximum resident set size (KB) = 792684 + 0: The total amount of wall time = 125.847487 + 0: The maximum resident set size (KB) = 800824 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.254874 - 0: The maximum resident set size (KB) = 1537364 + 0: The total amount of wall time = 237.880571 + 0: The maximum resident set size (KB) = 1548300 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.438051 - 0: The maximum resident set size (KB) = 1636944 + 0: The total amount of wall time = 213.406966 + 0: The maximum resident set size (KB) = 1645980 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 439.223639 - 0: The maximum resident set size (KB) = 1547176 + 0: The total amount of wall time = 431.777122 + 0: The maximum resident set size (KB) = 1547872 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.601995 - 0: The maximum resident set size (KB) = 1606784 + 0: The total amount of wall time = 305.151179 + 0: The maximum resident set size (KB) = 1624604 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.376257 - 0: The maximum resident set size (KB) = 1550292 + 0: The total amount of wall time = 240.852864 + 0: The maximum resident set size (KB) = 1563060 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.280047 - 0: The maximum resident set size (KB) = 1563016 + 0: The total amount of wall time = 273.173023 + 0: The maximum resident set size (KB) = 1562628 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 398.752602 - 0: The maximum resident set size (KB) = 997764 + 0: The total amount of wall time = 404.136555 + 0: The maximum resident set size (KB) = 992828 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.308910 - 0: The maximum resident set size (KB) = 989940 + 0: The total amount of wall time = 203.397016 + 0: The maximum resident set size (KB) = 996260 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 393.683356 - 0: The maximum resident set size (KB) = 997228 + 0: The total amount of wall time = 400.594483 + 0: The maximum resident set size (KB) = 994612 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 221.724605 - 0: The maximum resident set size (KB) = 973744 + 0: The total amount of wall time = 205.384904 + 0: The maximum resident set size (KB) = 989060 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.295617 - 0: The maximum resident set size (KB) = 991164 + 0: The total amount of wall time = 421.121370 + 0: The maximum resident set size (KB) = 986216 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 246.341930 - 0: The maximum resident set size (KB) = 978376 + 0: The total amount of wall time = 239.690260 + 0: The maximum resident set size (KB) = 977852 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 389.050130 - 0: The maximum resident set size (KB) = 990960 + 0: The total amount of wall time = 392.021932 + 0: The maximum resident set size (KB) = 1001352 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 398.954101 - 0: The maximum resident set size (KB) = 995920 + 0: The total amount of wall time = 396.207204 + 0: The maximum resident set size (KB) = 996964 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 597.043625 - 0: The maximum resident set size (KB) = 1081552 + 0: The total amount of wall time = 586.894061 + 0: The maximum resident set size (KB) = 1081564 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 320.374522 - 0: The maximum resident set size (KB) = 1120828 + 0: The total amount of wall time = 316.581777 + 0: The maximum resident set size (KB) = 1115436 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 626.322694 - 0: The maximum resident set size (KB) = 1032324 + 0: The total amount of wall time = 629.288173 + 0: The maximum resident set size (KB) = 1028584 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 557.655538 - 0: The maximum resident set size (KB) = 1150792 + 0: The total amount of wall time = 551.804402 + 0: The maximum resident set size (KB) = 1161928 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.661517 - 0: The maximum resident set size (KB) = 1001868 + 0: The total amount of wall time = 297.738282 + 0: The maximum resident set size (KB) = 1008808 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 622.602298 - 0: The maximum resident set size (KB) = 1074972 + 0: The total amount of wall time = 587.047488 + 0: The maximum resident set size (KB) = 1084244 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 667.088440 - 0: The maximum resident set size (KB) = 1039004 + 0: The total amount of wall time = 626.112856 + 0: The maximum resident set size (KB) = 1044140 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.198073 - 0: The maximum resident set size (KB) = 1026988 + 0: The total amount of wall time = 435.318572 + 0: The maximum resident set size (KB) = 1019904 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 561.193913 - 0: The maximum resident set size (KB) = 1024248 + 0: The total amount of wall time = 562.879633 + 0: The maximum resident set size (KB) = 1026672 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 597.087781 - 0: The maximum resident set size (KB) = 963288 + 0: The total amount of wall time = 567.456182 + 0: The maximum resident set size (KB) = 965476 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.557926 - 0: The maximum resident set size (KB) = 979316 + 0: The total amount of wall time = 586.436940 + 0: The maximum resident set size (KB) = 978364 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 577.038996 - 0: The maximum resident set size (KB) = 1034132 + 0: The total amount of wall time = 529.062958 + 0: The maximum resident set size (KB) = 1023784 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 416.427654 - 0: The maximum resident set size (KB) = 965756 + 0: The total amount of wall time = 419.277727 + 0: The maximum resident set size (KB) = 963392 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 424.811410 - 0: The maximum resident set size (KB) = 879068 + 0: The total amount of wall time = 424.559276 + 0: The maximum resident set size (KB) = 873956 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.188797 - 0: The maximum resident set size (KB) = 1036456 + 0: The total amount of wall time = 582.107687 + 0: The maximum resident set size (KB) = 1040292 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 748.929884 - 0: The maximum resident set size (KB) = 670108 + 0: The total amount of wall time = 708.025331 + 0: The maximum resident set size (KB) = 676488 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 733.242488 - 0: The maximum resident set size (KB) = 741488 + 0: The total amount of wall time = 700.568159 + 0: The maximum resident set size (KB) = 746552 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_gf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.023077 - 0: The maximum resident set size (KB) = 1067300 + 0: The total amount of wall time = 596.417874 + 0: The maximum resident set size (KB) = 1067820 Test 067 hrrr_gf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_c3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.320441 - 0: The maximum resident set size (KB) = 1072540 + 0: The total amount of wall time = 596.174777 + 0: The maximum resident set size (KB) = 1078892 Test 068 hrrr_c3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2960,14 +2960,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 455.463810 - 0: The maximum resident set size (KB) = 693668 + 0: The total amount of wall time = 517.562696 + 0: The maximum resident set size (KB) = 679212 Test 069 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.646521 - 0: The maximum resident set size (KB) = 682816 + 0: The total amount of wall time = 508.267355 + 0: The maximum resident set size (KB) = 683052 Test 070 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,26 +2996,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.868059 - 0: The maximum resident set size (KB) = 671520 + 0: The total amount of wall time = 312.373944 + 0: The maximum resident set size (KB) = 676508 Test 071 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 149.002333 - 0: The maximum resident set size (KB) = 543432 + 0: The total amount of wall time = 149.238540 + 0: The maximum resident set size (KB) = 550488 Test 072 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3062,14 +3062,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.020394 - 0: The maximum resident set size (KB) = 1546600 + 0: The total amount of wall time = 212.472995 + 0: The maximum resident set size (KB) = 1549596 Test 073 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3080,14 +3080,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.410765 - 0: The maximum resident set size (KB) = 996412 + 0: The total amount of wall time = 371.612997 + 0: The maximum resident set size (KB) = 996532 Test 074 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3114,348 +3114,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 193.555746 - 0: The maximum resident set size (KB) = 745488 + 0: The total amount of wall time = 192.533536 + 0: The maximum resident set size (KB) = 736588 Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.429124 - 0: The maximum resident set size (KB) = 741536 + 0: The total amount of wall time = 190.185644 + 0: The maximum resident set size (KB) = 738348 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.725326 - 0: The maximum resident set size (KB) = 743156 + 0: The total amount of wall time = 215.990588 + 0: The maximum resident set size (KB) = 742424 Test 077 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.079987 - 0: The maximum resident set size (KB) = 748736 + 0: The total amount of wall time = 189.200242 + 0: The maximum resident set size (KB) = 742212 Test 078 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.274614 - 0: The maximum resident set size (KB) = 788188 + 0: The total amount of wall time = 305.313301 + 0: The maximum resident set size (KB) = 789720 Test 079 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.941724 - 0: The maximum resident set size (KB) = 794496 + 0: The total amount of wall time = 298.528575 + 0: The maximum resident set size (KB) = 786524 Test 080 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.504170 - 0: The maximum resident set size (KB) = 756224 + 0: The total amount of wall time = 196.482241 + 0: The maximum resident set size (KB) = 749768 Test 081 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.163021 - 0: The maximum resident set size (KB) = 793240 + 0: The total amount of wall time = 195.839368 + 0: The maximum resident set size (KB) = 795384 Test 082 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.398262 - 0: The maximum resident set size (KB) = 1564780 + 0: The total amount of wall time = 226.032550 + 0: The maximum resident set size (KB) = 1566204 Test 083 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1279.977854 - 0: The maximum resident set size (KB) = 1025676 + 0: The total amount of wall time = 1343.298164 + 0: The maximum resident set size (KB) = 1010528 Test 084 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.860908 - 0: The maximum resident set size (KB) = 1136312 + 0: The total amount of wall time = 352.845133 + 0: The maximum resident set size (KB) = 1127848 Test 085 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.515427 - 0: The maximum resident set size (KB) = 1113744 + 0: The total amount of wall time = 340.499916 + 0: The maximum resident set size (KB) = 1117108 Test 086 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.578038 - 0: The maximum resident set size (KB) = 1131064 + 0: The total amount of wall time = 351.935953 + 0: The maximum resident set size (KB) = 1127748 Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.149576 - 0: The maximum resident set size (KB) = 1200820 + 0: The total amount of wall time = 368.225814 + 0: The maximum resident set size (KB) = 1207672 Test 088 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.609895 - 0: The maximum resident set size (KB) = 1130028 + 0: The total amount of wall time = 356.936124 + 0: The maximum resident set size (KB) = 1117248 Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.217619 - 0: The maximum resident set size (KB) = 1118632 + 0: The total amount of wall time = 354.439281 + 0: The maximum resident set size (KB) = 1132492 Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.821938 - 0: The maximum resident set size (KB) = 1137104 + 0: The total amount of wall time = 394.947810 + 0: The maximum resident set size (KB) = 1123980 Test 091 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.235041 - 0: The maximum resident set size (KB) = 1127132 + 0: The total amount of wall time = 394.410344 + 0: The maximum resident set size (KB) = 1127312 Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.019610 - 0: The maximum resident set size (KB) = 1120084 + 0: The total amount of wall time = 395.977659 + 0: The maximum resident set size (KB) = 1117416 Test 093 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.759134 - 0: The maximum resident set size (KB) = 1119592 + 0: The total amount of wall time = 363.097704 + 0: The maximum resident set size (KB) = 1114760 Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 586.196784 - 0: The maximum resident set size (KB) = 1125680 + 0: The total amount of wall time = 579.297997 + 0: The maximum resident set size (KB) = 1128140 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.555327 - 0: The maximum resident set size (KB) = 1114964 + 0: The total amount of wall time = 350.563792 + 0: The maximum resident set size (KB) = 1117380 Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 429.746084 - 0: The maximum resident set size (KB) = 1130992 + 0: The total amount of wall time = 430.860805 + 0: The maximum resident set size (KB) = 1121024 Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.286532 - 0: The maximum resident set size (KB) = 1118364 + 0: The total amount of wall time = 356.545997 + 0: The maximum resident set size (KB) = 1118768 Test 098 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 363.287460 - 0: The maximum resident set size (KB) = 504940 + 0: The total amount of wall time = 358.755377 + 0: The maximum resident set size (KB) = 497544 Test 099 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3466,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 342.680396 - 0: The maximum resident set size (KB) = 1010808 + 0: The total amount of wall time = 295.655237 + 0: The maximum resident set size (KB) = 1018828 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3520,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.148565 - 0: The maximum resident set size (KB) = 949428 + 0: The total amount of wall time = 481.883943 + 0: The maximum resident set size (KB) = 950584 Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3574,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.017758 - 0: The maximum resident set size (KB) = 913752 + 0: The total amount of wall time = 250.242136 + 0: The maximum resident set size (KB) = 906620 Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3628,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 247.267167 - 0: The maximum resident set size (KB) = 850820 + 0: The total amount of wall time = 253.764730 + 0: The maximum resident set size (KB) = 852772 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3682,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.504454 - 0: The maximum resident set size (KB) = 975888 + 0: The total amount of wall time = 457.778299 + 0: The maximum resident set size (KB) = 967316 Test 104 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.544033 - 0: The maximum resident set size (KB) = 878420 + 0: The total amount of wall time = 230.269609 + 0: The maximum resident set size (KB) = 884548 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.736227 - 0: The maximum resident set size (KB) = 857936 + 0: The total amount of wall time = 268.878222 + 0: The maximum resident set size (KB) = 863464 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3836,42 +3836,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.580877 - 0: The maximum resident set size (KB) = 911652 + 0: The total amount of wall time = 357.575390 + 0: The maximum resident set size (KB) = 903484 Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 130.924851 - 0: The maximum resident set size (KB) = 841100 + 0: The total amount of wall time = 128.134217 + 0: The maximum resident set size (KB) = 836180 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.474969 - 0: The maximum resident set size (KB) = 790840 + 0: The total amount of wall time = 138.912291 + 0: The maximum resident set size (KB) = 792120 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3887,40 +3887,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 162.699544 - 0: The maximum resident set size (KB) = 1146940 + 0: The total amount of wall time = 159.933086 + 0: The maximum resident set size (KB) = 1152724 Test 110 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 73.609969 - 0: The maximum resident set size (KB) = 1102528 + 0: The total amount of wall time = 73.197207 + 0: The maximum resident set size (KB) = 1093296 Test 111 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.546285 - 0: The maximum resident set size (KB) = 1087864 + 0: The total amount of wall time = 89.053070 + 0: The maximum resident set size (KB) = 1093140 Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3967,123 +3967,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.290040 - 0: The maximum resident set size (KB) = 970296 + 0: The total amount of wall time = 318.457707 + 0: The maximum resident set size (KB) = 968788 Test 113 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.349666 - 0: The maximum resident set size (KB) = 1008336 + 0: The total amount of wall time = 348.275833 + 0: The maximum resident set size (KB) = 1014132 Test 114 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.553346 - 0: The maximum resident set size (KB) = 1011832 + 0: The total amount of wall time = 339.214647 + 0: The maximum resident set size (KB) = 1009028 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1082.456591 - 0: The maximum resident set size (KB) = 1176020 + 0: The total amount of wall time = 1084.084163 + 0: The maximum resident set size (KB) = 1174620 Test 116 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 629.191976 - 0: The maximum resident set size (KB) = 1122956 + 0: The total amount of wall time = 623.424079 + 0: The maximum resident set size (KB) = 1125452 Test 117 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/conus13km_radar_tten_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1078.337418 - 0: The maximum resident set size (KB) = 1246940 + 0: The total amount of wall time = 1084.940867 + 0: The maximum resident set size (KB) = 1253440 Test 118 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.307596 - 0: The maximum resident set size (KB) = 1034200 + 0: The total amount of wall time = 357.947686 + 0: The maximum resident set size (KB) = 1032852 Test 119 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 319.879127 - 0: The maximum resident set size (KB) = 1376528 + 0: The total amount of wall time = 320.213938 + 0: The maximum resident set size (KB) = 1392512 Test 120 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 399.576428 - 0: The maximum resident set size (KB) = 1710224 + 0: The total amount of wall time = 392.198181 + 0: The maximum resident set size (KB) = 1710988 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4092,14 +4092,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 514.126042 - 0: The maximum resident set size (KB) = 1445888 + 0: The total amount of wall time = 512.669286 + 0: The maximum resident set size (KB) = 1455376 Test 122 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,14 +4108,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 979.065825 - 0: The maximum resident set size (KB) = 1490832 + 0: The total amount of wall time = 904.142082 + 0: The maximum resident set size (KB) = 1449060 Test 123 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1089.082169 - 0: The maximum resident set size (KB) = 1476236 + 0: The total amount of wall time = 1038.439250 + 0: The maximum resident set size (KB) = 1492280 Test 124 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_docn_intel Checking test 125 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,14 +4141,14 @@ Checking test 125 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 533.854984 - 0: The maximum resident set size (KB) = 1467016 + 0: The total amount of wall time = 470.083974 + 0: The maximum resident set size (KB) = 1428324 Test 125 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_docn_oisst_intel Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,118 +4156,118 @@ Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 551.216991 - 0: The maximum resident set size (KB) = 1454324 + 0: The total amount of wall time = 465.669490 + 0: The maximum resident set size (KB) = 1454584 Test 126 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_cfsr_intel Checking test 127 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.189309 - 0: The maximum resident set size (KB) = 1022520 + 0: The total amount of wall time = 204.743295 + 0: The maximum resident set size (KB) = 1027864 Test 127 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_restart_cfsr_intel Checking test 128 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.288211 - 0: The maximum resident set size (KB) = 995000 + 0: The total amount of wall time = 119.543583 + 0: The maximum resident set size (KB) = 992976 Test 128 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_gefs_intel Checking test 129 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 186.480429 - 0: The maximum resident set size (KB) = 906748 + 0: The total amount of wall time = 214.652449 + 0: The maximum resident set size (KB) = 900852 Test 129 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_iau_gefs_intel Checking test 130 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.345951 - 0: The maximum resident set size (KB) = 902620 + 0: The total amount of wall time = 213.777668 + 0: The maximum resident set size (KB) = 899464 Test 130 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_stochy_gefs_intel Checking test 131 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.872396 - 0: The maximum resident set size (KB) = 895556 + 0: The total amount of wall time = 204.456060 + 0: The maximum resident set size (KB) = 907608 Test 131 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_ciceC_cfsr_intel Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.163571 - 0: The maximum resident set size (KB) = 1028336 + 0: The total amount of wall time = 205.715971 + 0: The maximum resident set size (KB) = 1051888 Test 132 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_bulk_cfsr_intel Checking test 133 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.533234 - 0: The maximum resident set size (KB) = 1016692 + 0: The total amount of wall time = 210.605563 + 0: The maximum resident set size (KB) = 1028440 Test 133 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_bulk_gefs_intel Checking test 134 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.113339 - 0: The maximum resident set size (KB) = 902852 + 0: The total amount of wall time = 204.304317 + 0: The maximum resident set size (KB) = 901584 Test 134 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_mx025_cfsr_intel Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4276,14 +4276,14 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 533.990310 - 0: The maximum resident set size (KB) = 855536 + 0: The total amount of wall time = 541.857748 + 0: The maximum resident set size (KB) = 846228 Test 135 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_mx025_gefs_intel Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4292,77 +4292,77 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 528.323269 - 0: The maximum resident set size (KB) = 809552 + 0: The total amount of wall time = 536.587630 + 0: The maximum resident set size (KB) = 798728 Test 136 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_multiple_files_cfsr_intel Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.958731 - 0: The maximum resident set size (KB) = 1025464 + 0: The total amount of wall time = 206.867025 + 0: The maximum resident set size (KB) = 1025524 Test 137 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_3072x1536_cfsr_intel Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 293.902565 - 0: The maximum resident set size (KB) = 2313036 + 0: The total amount of wall time = 322.777472 + 0: The maximum resident set size (KB) = 2358532 Test 138 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_gfs_intel Checking test 139 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 324.081494 - 0: The maximum resident set size (KB) = 2370664 + 0: The total amount of wall time = 322.902707 + 0: The maximum resident set size (KB) = 2264808 Test 139 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_debug_cfsr_intel Checking test 140 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 459.769084 - 0: The maximum resident set size (KB) = 977936 + 0: The total amount of wall time = 458.588662 + 0: The maximum resident set size (KB) = 987112 Test 140 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_cfsr_faster_intel Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.570795 - 0: The maximum resident set size (KB) = 1023320 + 0: The total amount of wall time = 187.892639 + 0: The maximum resident set size (KB) = 1027292 Test 141 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_lnd_gswp3_intel Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4371,14 +4371,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 8.955530 - 0: The maximum resident set size (KB) = 223988 + 0: The total amount of wall time = 9.658749 + 0: The maximum resident set size (KB) = 221124 Test 142 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_lnd_gswp3_rst_intel Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4387,14 +4387,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 15.903201 - 0: The maximum resident set size (KB) = 222896 + 0: The total amount of wall time = 25.568910 + 0: The maximum resident set size (KB) = 220892 Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_atmlnd_sbs_intel Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4479,14 +4479,14 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 363.954993 - 0: The maximum resident set size (KB) = 1603080 + 0: The total amount of wall time = 318.763703 + 0: The maximum resident set size (KB) = 1598644 Test 144 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmwav_control_noaero_p8_intel Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4529,14 +4529,14 @@ Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 143.348379 - 0: The maximum resident set size (KB) = 1567972 + 0: The total amount of wall time = 150.946396 + 0: The maximum resident set size (KB) = 1574572 Test 145 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_atmwav_intel Checking test 146 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4580,14 +4580,14 @@ Checking test 146 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 189.910893 - 0: The maximum resident set size (KB) = 578064 + 0: The total amount of wall time = 117.173735 + 0: The maximum resident set size (KB) = 600460 Test 146 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4631,14 +4631,14 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.032307 - 0: The maximum resident set size (KB) = 1656256 + 0: The total amount of wall time = 310.600048 + 0: The maximum resident set size (KB) = 1654172 Test 147 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.331611 - 0: The maximum resident set size (KB) = 1680468 + 0: The total amount of wall time = 384.496003 + 0: The maximum resident set size (KB) = 1683152 Test 148 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_18541/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4733,12 +4733,12 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.196409 - 0: The maximum resident set size (KB) = 1693384 + 0: The total amount of wall time = 380.667102 + 0: The maximum resident set size (KB) = 1707132 Test 149 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 17:17:21 UTC 2023 -Elapsed time: 02h:00m:38s. Have a nice day! +Sat Sep 23 09:32:23 UTC 2023 +Elapsed time: 05h:50m:16s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 647d9946e5..4e4e61fbe0 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Thu Sep 21 08:48:53 CDT 2023 +Sun Sep 24 09:26:40 CDT 2023 Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 708 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 235 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 696 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 264 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 722 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 647 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 724 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 735 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 140 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 240 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 260 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 80 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 730 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 299 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 714 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 777 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 724 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 747 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 812 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 271 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1146 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 269 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 792 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 268 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1020 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 691 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 242 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 731 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 617 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 247 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 664 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 644 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 229 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 665 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 215 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 688 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 714 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 713 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 676 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 720 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 821 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1154 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 820 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 806 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 257 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.567499 - 0: The maximum resident set size (KB) = 3169812 + 0: The total amount of wall time = 297.688576 + 0: The maximum resident set size (KB) = 3174748 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 220.632673 - 0: The maximum resident set size (KB) = 1712584 + 0: The total amount of wall time = 217.244393 + 0: The maximum resident set size (KB) = 1711084 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.030837 - 0: The maximum resident set size (KB) = 3212956 + 0: The total amount of wall time = 333.570109 + 0: The maximum resident set size (KB) = 3208164 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.146098 - 0: The maximum resident set size (KB) = 3262228 + 0: The total amount of wall time = 197.998862 + 0: The maximum resident set size (KB) = 3257452 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.816884 - 0: The maximum resident set size (KB) = 3220356 + 0: The total amount of wall time = 333.115738 + 0: The maximum resident set size (KB) = 3221768 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 212.701287 - 0: The maximum resident set size (KB) = 3088068 + 0: The total amount of wall time = 207.778053 + 0: The maximum resident set size (KB) = 3021852 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 376.555704 - 0: The maximum resident set size (KB) = 3553408 + 0: The total amount of wall time = 368.089317 + 0: The maximum resident set size (KB) = 3551648 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.169917 - 0: The maximum resident set size (KB) = 3204304 + 0: The total amount of wall time = 333.599852 + 0: The maximum resident set size (KB) = 3201188 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.164015 - 0: The maximum resident set size (KB) = 3066544 + 0: The total amount of wall time = 280.894875 + 0: The maximum resident set size (KB) = 3063336 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.232396 - 0: The maximum resident set size (KB) = 3210120 + 0: The total amount of wall time = 334.787586 + 0: The maximum resident set size (KB) = 3210868 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 601.150376 - 0: The maximum resident set size (KB) = 3325720 + 0: The total amount of wall time = 588.417778 + 0: The maximum resident set size (KB) = 3332940 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 396.080581 - 0: The maximum resident set size (KB) = 3626076 + 0: The total amount of wall time = 388.102133 + 0: The maximum resident set size (KB) = 3624380 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 850.058748 - 0: The maximum resident set size (KB) = 4034740 + 0: The total amount of wall time = 764.641432 + 0: The maximum resident set size (KB) = 4126780 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 507.408403 - 0: The maximum resident set size (KB) = 4351864 + 0: The total amount of wall time = 492.412805 + 0: The maximum resident set size (KB) = 4379908 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.943273 - 0: The maximum resident set size (KB) = 1744376 + 0: The total amount of wall time = 250.451859 + 0: The maximum resident set size (KB) = 1740972 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.733044 - 0: The maximum resident set size (KB) = 1783348 + 0: The total amount of wall time = 262.297448 + 0: The maximum resident set size (KB) = 1782832 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 554.027250 - 0: The maximum resident set size (KB) = 3250224 + 0: The total amount of wall time = 529.457942 + 0: The maximum resident set size (KB) = 3244752 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.631125 - 0: The maximum resident set size (KB) = 1755820 + 0: The total amount of wall time = 358.271130 + 0: The maximum resident set size (KB) = 1761728 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.401520 - 0: The maximum resident set size (KB) = 1780016 + 0: The total amount of wall time = 259.342503 + 0: The maximum resident set size (KB) = 1786676 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.721881 - 0: The maximum resident set size (KB) = 2835176 + 0: The total amount of wall time = 499.637471 + 0: The maximum resident set size (KB) = 2822000 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.850562 - 0: The maximum resident set size (KB) = 3214784 + 0: The total amount of wall time = 315.686808 + 0: The maximum resident set size (KB) = 3215692 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1209.471884 - 0: The maximum resident set size (KB) = 1775808 + 0: The total amount of wall time = 1206.882725 + 0: The maximum resident set size (KB) = 1783372 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 584.768183 - 0: The maximum resident set size (KB) = 1152104 + 0: The total amount of wall time = 586.175183 + 0: The maximum resident set size (KB) = 1112672 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1063.089894 - 0: The maximum resident set size (KB) = 1670868 + 0: The total amount of wall time = 1063.326598 + 0: The maximum resident set size (KB) = 1675524 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1414.310590 - 0: The maximum resident set size (KB) = 1718852 + 0: The total amount of wall time = 1425.444739 + 0: The maximum resident set size (KB) = 1715196 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.883246 - 0: The maximum resident set size (KB) = 695620 + 0: The total amount of wall time = 192.592561 + 0: The maximum resident set size (KB) = 696820 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,36 +1705,36 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.455411 - 0: The maximum resident set size (KB) = 646600 + 0: The total amount of wall time = 130.722664 + 0: The maximum resident set size (KB) = 643636 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.676787 - 0: The maximum resident set size (KB) = 652960 + 0: The total amount of wall time = 136.803920 + 0: The maximum resident set size (KB) = 649728 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,16 +1745,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.635514 - 0: The maximum resident set size (KB) = 643284 + 0: The total amount of wall time = 133.549978 + 0: The maximum resident set size (KB) = 644392 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1763,60 +1763,60 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.826504 - 0: The maximum resident set size (KB) = 641372 + 0: The total amount of wall time = 136.094274 + 0: The maximum resident set size (KB) = 642840 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.695298 -0: The maximum resident set size (KB) = 824960 +0: The total amount of wall time = 343.329115 +0: The maximum resident set size (KB) = 834712 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.806983 - 0: The maximum resident set size (KB) = 785200 + 0: The total amount of wall time = 527.261372 + 0: The maximum resident set size (KB) = 790000 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 583.893811 - 0: The maximum resident set size (KB) = 1353048 + 0: The total amount of wall time = 583.030806 + 0: The maximum resident set size (KB) = 1382632 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1863,46 +1863,46 @@ Checking test 034 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 516.859628 - 0: The maximum resident set size (KB) = 1446872 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 509.791200 + 0: The maximum resident set size (KB) = 1455272 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.727420 - 0: The maximum resident set size (KB) = 649132 + 0: The total amount of wall time = 88.837055 + 0: The maximum resident set size (KB) = 651276 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 55.637095 - 0: The maximum resident set size (KB) = 560940 + 0: The total amount of wall time = 50.748021 + 0: The maximum resident set size (KB) = 555796 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.871417 - 0: The maximum resident set size (KB) = 645128 + 0: The total amount of wall time = 81.298114 + 0: The maximum resident set size (KB) = 649444 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.314313 - 0: The maximum resident set size (KB) = 647428 + 0: The total amount of wall time = 135.023957 + 0: The maximum resident set size (KB) = 644236 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.069461 - 0: The maximum resident set size (KB) = 643552 + 0: The total amount of wall time = 136.703628 + 0: The maximum resident set size (KB) = 640796 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2011,92 +2011,92 @@ Checking test 040 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.910861 - 0: The maximum resident set size (KB) = 1616780 + 0: The total amount of wall time = 168.774656 + 0: The maximum resident set size (KB) = 1623244 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.396396 - 0: The maximum resident set size (KB) = 893416 + 0: The total amount of wall time = 90.497536 + 0: The maximum resident set size (KB) = 936680 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2111,7 +2111,7 @@ Checking test 042 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2143,21 +2143,21 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.463707 - 0: The maximum resident set size (KB) = 1634808 + 0: The total amount of wall time = 169.873892 + 0: The maximum resident set size (KB) = 1616388 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.583625 - 0: The maximum resident set size (KB) = 876936 + 0: The total amount of wall time = 95.711209 + 0: The maximum resident set size (KB) = 855972 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2207,46 +2207,46 @@ Checking test 044 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.111495 - 0: The maximum resident set size (KB) = 1607880 + 0: The total amount of wall time = 177.284777 + 0: The maximum resident set size (KB) = 1599916 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2257,46 +2257,46 @@ Checking test 045 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.411564 - 0: The maximum resident set size (KB) = 1704656 + 0: The total amount of wall time = 175.225761 + 0: The maximum resident set size (KB) = 1692160 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.461674 - 0: The maximum resident set size (KB) = 1585748 + 0: The total amount of wall time = 311.822944 + 0: The maximum resident set size (KB) = 1620280 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2337,46 +2337,46 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.436468 - 0: The maximum resident set size (KB) = 1687776 + 0: The total amount of wall time = 228.766726 + 0: The maximum resident set size (KB) = 1679604 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2391,46 +2391,46 @@ Checking test 048 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.812790 - 0: The maximum resident set size (KB) = 1628264 + 0: The total amount of wall time = 172.580726 + 0: The maximum resident set size (KB) = 1624840 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2445,46 +2445,46 @@ Checking test 049 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.971452 - 0: The maximum resident set size (KB) = 1632072 + 0: The total amount of wall time = 191.867916 + 0: The maximum resident set size (KB) = 1603172 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.186416 - 0: The maximum resident set size (KB) = 1096736 + 0: The total amount of wall time = 291.548400 + 0: The maximum resident set size (KB) = 1102712 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.368594 - 0: The maximum resident set size (KB) = 1088304 + 0: The total amount of wall time = 149.622198 + 0: The maximum resident set size (KB) = 1091756 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.557847 - 0: The maximum resident set size (KB) = 1099036 + 0: The total amount of wall time = 291.127753 + 0: The maximum resident set size (KB) = 1098968 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.298548 - 0: The maximum resident set size (KB) = 1090060 + 0: The total amount of wall time = 150.726978 + 0: The maximum resident set size (KB) = 1051912 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.692625 - 0: The maximum resident set size (KB) = 1088480 + 0: The total amount of wall time = 310.948666 + 0: The maximum resident set size (KB) = 1096880 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 203.314053 - 0: The maximum resident set size (KB) = 1087316 + 0: The total amount of wall time = 225.318273 + 0: The maximum resident set size (KB) = 1085364 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 291.404412 - 0: The maximum resident set size (KB) = 1366264 + 0: The total amount of wall time = 292.306780 + 0: The maximum resident set size (KB) = 1366020 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.505792 - 0: The maximum resident set size (KB) = 1088844 + 0: The total amount of wall time = 287.513426 + 0: The maximum resident set size (KB) = 1098904 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.305061 - 0: The maximum resident set size (KB) = 1096304 + 0: The total amount of wall time = 293.198411 + 0: The maximum resident set size (KB) = 1099892 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 369.836695 - 0: The maximum resident set size (KB) = 923040 + 0: The total amount of wall time = 371.661390 + 0: The maximum resident set size (KB) = 921276 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2664,46 +2664,46 @@ Checking test 060 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.773012 - 0: The maximum resident set size (KB) = 1246140 + 0: The total amount of wall time = 449.867977 + 0: The maximum resident set size (KB) = 1244252 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 266.177406 - 0: The maximum resident set size (KB) = 1213368 + 0: The total amount of wall time = 266.070640 + 0: The maximum resident set size (KB) = 1204956 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2736,46 +2736,46 @@ Checking test 062 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.722664 - 0: The maximum resident set size (KB) = 1172004 + 0: The total amount of wall time = 467.923620 + 0: The maximum resident set size (KB) = 1174036 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,92 +2790,92 @@ Checking test 063 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.227507 - 0: The maximum resident set size (KB) = 1324792 + 0: The total amount of wall time = 457.136294 + 0: The maximum resident set size (KB) = 1324864 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.400482 - 0: The maximum resident set size (KB) = 1140928 + 0: The total amount of wall time = 230.409397 + 0: The maximum resident set size (KB) = 1136488 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2890,46 +2890,46 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.888381 - 0: The maximum resident set size (KB) = 1198192 + 0: The total amount of wall time = 456.335561 + 0: The maximum resident set size (KB) = 1245456 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2944,92 +2944,92 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.798175 - 0: The maximum resident set size (KB) = 1170964 + 0: The total amount of wall time = 476.601232 + 0: The maximum resident set size (KB) = 1176292 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.372405 - 0: The maximum resident set size (KB) = 1169756 + 0: The total amount of wall time = 335.165435 + 0: The maximum resident set size (KB) = 1171336 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3044,46 +3044,46 @@ Checking test 068 hrrr_control_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 437.328227 - 0: The maximum resident set size (KB) = 1151332 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 430.571883 + 0: The maximum resident set size (KB) = 1183604 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3098,7 +3098,7 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 434.488858 - 0: The maximum resident set size (KB) = 1087756 + 0: The total amount of wall time = 440.650116 + 0: The maximum resident set size (KB) = 1088716 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3152,46 +3152,46 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 452.499980 - 0: The maximum resident set size (KB) = 1117900 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 448.307574 + 0: The maximum resident set size (KB) = 1120768 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3206,74 +3206,74 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 368.626690 - 0: The maximum resident set size (KB) = 1132924 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 366.228370 + 0: The maximum resident set size (KB) = 1137556 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.961819 - 0: The maximum resident set size (KB) = 1120448 + 0: The total amount of wall time = 321.770148 + 0: The maximum resident set size (KB) = 1122688 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 326.378650 - 0: The maximum resident set size (KB) = 1020768 + 0: The total amount of wall time = 325.888103 + 0: The maximum resident set size (KB) = 1020672 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3288,46 +3288,46 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.956773 - 0: The maximum resident set size (KB) = 1197544 + 0: The total amount of wall time = 440.634892 + 0: The maximum resident set size (KB) = 1205656 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.224815 - 0: The maximum resident set size (KB) = 802460 + 0: The total amount of wall time = 523.997955 + 0: The maximum resident set size (KB) = 799300 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.317457 - 0: The maximum resident set size (KB) = 915432 + 0: The total amount of wall time = 517.221667 + 0: The maximum resident set size (KB) = 913588 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_gf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3386,46 +3386,46 @@ Checking test 077 hrrr_gf_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 451.790232 - 0: The maximum resident set size (KB) = 1233180 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 451.717845 + 0: The maximum resident set size (KB) = 1230272 Test 077 hrrr_gf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_c3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3440,46 +3440,46 @@ Checking test 078 hrrr_c3_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 455.865548 - 0: The maximum resident set size (KB) = 1231916 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 455.499566 + 0: The maximum resident set size (KB) = 1235932 Test 078 hrrr_c3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3490,14 +3490,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.545321 - 0: The maximum resident set size (KB) = 820444 + 0: The total amount of wall time = 341.986806 + 0: The maximum resident set size (KB) = 785580 Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3508,14 +3508,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.711379 - 0: The maximum resident set size (KB) = 819252 + 0: The total amount of wall time = 345.396060 + 0: The maximum resident set size (KB) = 817716 Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3526,26 +3526,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.855885 - 0: The maximum resident set size (KB) = 822408 + 0: The total amount of wall time = 189.123113 + 0: The maximum resident set size (KB) = 810824 Test 081 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.842961 - 0: The maximum resident set size (KB) = 677024 + 0: The total amount of wall time = 113.784734 + 0: The maximum resident set size (KB) = 705192 Test 082 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3560,46 +3560,46 @@ Checking test 083 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.893700 - 0: The maximum resident set size (KB) = 1614760 + 0: The total amount of wall time = 155.756015 + 0: The maximum resident set size (KB) = 1610496 Test 083 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.956572 - 0: The maximum resident set size (KB) = 1093156 + 0: The total amount of wall time = 267.014812 + 0: The maximum resident set size (KB) = 1093276 Test 084 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3644,348 +3644,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 158.364422 - 0: The maximum resident set size (KB) = 795348 + 0: The total amount of wall time = 153.743663 + 0: The maximum resident set size (KB) = 802140 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.414729 - 0: The maximum resident set size (KB) = 799596 + 0: The total amount of wall time = 152.414907 + 0: The maximum resident set size (KB) = 802812 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.766558 - 0: The maximum resident set size (KB) = 811952 + 0: The total amount of wall time = 170.352690 + 0: The maximum resident set size (KB) = 805564 Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.552739 - 0: The maximum resident set size (KB) = 805128 + 0: The total amount of wall time = 157.655018 + 0: The maximum resident set size (KB) = 807272 Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.738078 - 0: The maximum resident set size (KB) = 853832 + 0: The total amount of wall time = 237.929906 + 0: The maximum resident set size (KB) = 848936 Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.809241 - 0: The maximum resident set size (KB) = 853948 + 0: The total amount of wall time = 239.394078 + 0: The maximum resident set size (KB) = 849768 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.912054 - 0: The maximum resident set size (KB) = 812748 + 0: The total amount of wall time = 158.353697 + 0: The maximum resident set size (KB) = 814736 Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.044598 - 0: The maximum resident set size (KB) = 854260 + 0: The total amount of wall time = 163.792390 + 0: The maximum resident set size (KB) = 853476 Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.233129 - 0: The maximum resident set size (KB) = 1596112 + 0: The total amount of wall time = 187.742229 + 0: The maximum resident set size (KB) = 1637232 Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 989.922154 - 0: The maximum resident set size (KB) = 1110280 + 0: The total amount of wall time = 1025.924770 + 0: The maximum resident set size (KB) = 1117308 Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.607209 - 0: The maximum resident set size (KB) = 1188480 + 0: The total amount of wall time = 277.943736 + 0: The maximum resident set size (KB) = 1186868 Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.366999 - 0: The maximum resident set size (KB) = 1183888 + 0: The total amount of wall time = 274.014315 + 0: The maximum resident set size (KB) = 1187992 Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.872510 - 0: The maximum resident set size (KB) = 1186132 + 0: The total amount of wall time = 284.938231 + 0: The maximum resident set size (KB) = 1188424 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.978522 - 0: The maximum resident set size (KB) = 1266164 + 0: The total amount of wall time = 304.110871 + 0: The maximum resident set size (KB) = 1232952 Test 098 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.931715 - 0: The maximum resident set size (KB) = 1197048 + 0: The total amount of wall time = 286.070273 + 0: The maximum resident set size (KB) = 1196000 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.386244 - 0: The maximum resident set size (KB) = 1177492 + 0: The total amount of wall time = 282.672938 + 0: The maximum resident set size (KB) = 1187024 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.594220 - 0: The maximum resident set size (KB) = 1187680 + 0: The total amount of wall time = 288.103691 + 0: The maximum resident set size (KB) = 1189384 Test 101 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.735339 - 0: The maximum resident set size (KB) = 1194156 + 0: The total amount of wall time = 281.289131 + 0: The maximum resident set size (KB) = 1187456 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.348339 - 0: The maximum resident set size (KB) = 1191184 + 0: The total amount of wall time = 273.971027 + 0: The maximum resident set size (KB) = 1183708 Test 103 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.388970 - 0: The maximum resident set size (KB) = 1198652 + 0: The total amount of wall time = 282.923530 + 0: The maximum resident set size (KB) = 1182528 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.446378 - 0: The maximum resident set size (KB) = 1174528 + 0: The total amount of wall time = 459.563677 + 0: The maximum resident set size (KB) = 1188068 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.291355 - 0: The maximum resident set size (KB) = 1195812 + 0: The total amount of wall time = 281.989959 + 0: The maximum resident set size (KB) = 1177680 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.304697 - 0: The maximum resident set size (KB) = 1190016 + 0: The total amount of wall time = 339.842997 + 0: The maximum resident set size (KB) = 1202440 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.412050 - 0: The maximum resident set size (KB) = 1149948 + 0: The total amount of wall time = 287.949982 + 0: The maximum resident set size (KB) = 1184928 Test 108 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.664343 - 0: The maximum resident set size (KB) = 589808 + 0: The total amount of wall time = 285.263198 + 0: The maximum resident set size (KB) = 594112 Test 109 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3996,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.787098 - 0: The maximum resident set size (KB) = 1107344 + 0: The total amount of wall time = 247.463266 + 0: The maximum resident set size (KB) = 1103864 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4018,100 +4018,100 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.504441 - 0: The maximum resident set size (KB) = 1111628 + 0: The total amount of wall time = 370.036447 + 0: The maximum resident set size (KB) = 1107084 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 193.495194 - 0: The maximum resident set size (KB) = 1028896 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_dyn32_phy32_intel +Checking test 112 hrrr_control_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 191.745852 + 0: The maximum resident set size (KB) = 1034880 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4126,7 +4126,7 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -4158,14 +4158,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.185191 - 0: The maximum resident set size (KB) = 981168 + 0: The total amount of wall time = 191.544047 + 0: The maximum resident set size (KB) = 981804 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4180,46 +4180,46 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.485937 - 0: The maximum resident set size (KB) = 1128324 + 0: The total amount of wall time = 379.865469 + 0: The maximum resident set size (KB) = 1124700 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4234,46 +4234,46 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 164.030369 - 0: The maximum resident set size (KB) = 973208 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 162.806876 + 0: The maximum resident set size (KB) = 967812 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4288,120 +4288,120 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 203.462130 - 0: The maximum resident set size (KB) = 975284 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 202.375188 + 0: The maximum resident set size (KB) = 980952 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.432038 - 0: The maximum resident set size (KB) = 1064684 + 0: The total amount of wall time = 273.280687 + 0: The maximum resident set size (KB) = 1061660 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.331663 - 0: The maximum resident set size (KB) = 933336 + 0: The total amount of wall time = 101.801056 + 0: The maximum resident set size (KB) = 937572 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.694070 - 0: The maximum resident set size (KB) = 889888 + 0: The total amount of wall time = 103.085602 + 0: The maximum resident set size (KB) = 883212 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4410,47 +4410,47 @@ Checking test 120 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 116.602836 - 0: The maximum resident set size (KB) = 1254352 + 0: The total amount of wall time = 114.563603 + 0: The maximum resident set size (KB) = 1251592 Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 51.485562 - 0: The maximum resident set size (KB) = 1179408 + 0: The total amount of wall time = 49.500502 + 0: The maximum resident set size (KB) = 1176920 Test 121 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.130322 - 0: The maximum resident set size (KB) = 1188712 + 0: The total amount of wall time = 66.435872 + 0: The maximum resident set size (KB) = 1123664 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4465,155 +4465,155 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 243.686048 - 0: The maximum resident set size (KB) = 1102064 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 239.185583 + 0: The maximum resident set size (KB) = 1109984 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.101103 - 0: The maximum resident set size (KB) = 1071688 + 0: The total amount of wall time = 282.494832 + 0: The maximum resident set size (KB) = 1070480 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.001821 - 0: The maximum resident set size (KB) = 1067884 + 0: The total amount of wall time = 265.585802 + 0: The maximum resident set size (KB) = 1071308 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 874.531175 - 0: The maximum resident set size (KB) = 1274176 + 0: The total amount of wall time = 866.016454 + 0: The maximum resident set size (KB) = 1276484 Test 126 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 488.806099 - 0: The maximum resident set size (KB) = 1207748 + 0: The total amount of wall time = 484.400828 + 0: The maximum resident set size (KB) = 1205456 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 844.865787 - 0: The maximum resident set size (KB) = 1344916 + 0: The total amount of wall time = 822.331596 + 0: The maximum resident set size (KB) = 1348912 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.737395 - 0: The maximum resident set size (KB) = 1114872 + 0: The total amount of wall time = 287.008770 + 0: The maximum resident set size (KB) = 1111460 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 248.339457 - 0: The maximum resident set size (KB) = 1243012 + 0: The total amount of wall time = 250.231484 + 0: The maximum resident set size (KB) = 1331148 Test 130 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.231837 - 0: The maximum resident set size (KB) = 1595620 + 0: The total amount of wall time = 327.397661 + 0: The maximum resident set size (KB) = 1587940 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 376.802516 - 0: The maximum resident set size (KB) = 1425880 + 0: The total amount of wall time = 374.212636 + 0: The maximum resident set size (KB) = 1422252 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4638,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 726.946066 - 0: The maximum resident set size (KB) = 1452928 + 0: The total amount of wall time = 734.444398 + 0: The maximum resident set size (KB) = 1449552 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,51 +4656,51 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 827.834989 - 0: The maximum resident set size (KB) = 1481064 + 0: The total amount of wall time = 823.261437 + 0: The maximum resident set size (KB) = 1473984 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 339.816357 - 0: The maximum resident set size (KB) = 655636 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 341.010120 + 0: The maximum resident set size (KB) = 651340 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -4711,17 +4711,17 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 355.673331 - 0: The maximum resident set size (KB) = 504860 + 0: The total amount of wall time = 354.818617 + 0: The maximum resident set size (KB) = 506212 Test 136 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,76 +4730,76 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 391.251097 - 0: The maximum resident set size (KB) = 663384 - -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + 0: The total amount of wall time = 391.674242 + 0: The maximum resident set size (KB) = 669412 - 0: The total amount of wall time = 166.293791 - 0: The maximum resident set size (KB) = 404524 +Test 137 hafs_regional_telescopic_2nests_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_1nest_atm_intel +Checking test 138 hafs_global_1nest_atm_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 166.950286 + 0: The maximum resident set size (KB) = 400716 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -4835,17 +4835,17 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 180.726084 - 0: The maximum resident set size (KB) = 381500 + 0: The total amount of wall time = 172.997695 + 0: The maximum resident set size (KB) = 372304 Test 139 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4863,78 +4863,78 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 431.093318 - 0: The maximum resident set size (KB) = 477836 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 436.235693 + 0: The maximum resident set size (KB) = 486184 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4952,14 +4952,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK @@ -5007,23 +5007,23 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 455.811226 - 0: The maximum resident set size (KB) = 477844 + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 453.551706 + 0: The maximum resident set size (KB) = 421016 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5032,51 +5032,51 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 219.879604 - 0: The maximum resident set size (KB) = 670252 + 0: The total amount of wall time = 218.479966 + 0: The maximum resident set size (KB) = 676292 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 203.865406 - 0: The maximum resident set size (KB) = 673072 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 204.454625 + 0: The maximum resident set size (KB) = 670256 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK @@ -5087,17 +5087,17 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 216.230452 - 0: The maximum resident set size (KB) = 530768 + 0: The total amount of wall time = 215.379311 + 0: The maximum resident set size (KB) = 532708 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5106,42 +5106,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.256368 - 0: The maximum resident set size (KB) = 720024 + 0: The total amount of wall time = 290.207715 + 0: The maximum resident set size (KB) = 669772 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 66.270256 - 0: The maximum resident set size (KB) = 421264 + 0: The total amount of wall time = 66.218870 + 0: The maximum resident set size (KB) = 420332 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.808903 - 0: The maximum resident set size (KB) = 734512 + 0: The total amount of wall time = 779.487790 + 0: The maximum resident set size (KB) = 734148 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5152,14 +5152,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 533.066340 - 0: The maximum resident set size (KB) = 813384 + 0: The total amount of wall time = 536.838573 + 0: The maximum resident set size (KB) = 807280 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,14 +5167,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.755337 - 0: The maximum resident set size (KB) = 1406848 + 0: The total amount of wall time = 344.246617 + 0: The maximum resident set size (KB) = 1411520 Test 149 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5182,131 +5182,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.763568 - 0: The maximum resident set size (KB) = 1397944 + 0: The total amount of wall time = 343.446530 + 0: The maximum resident set size (KB) = 1383728 Test 150 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 953.294256 - 0: The maximum resident set size (KB) = 1159092 + 0: The total amount of wall time = 949.568261 + 0: The maximum resident set size (KB) = 1155344 Test 151 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.839135 - 0: The maximum resident set size (KB) = 1115380 + 0: The total amount of wall time = 146.087468 + 0: The maximum resident set size (KB) = 1116568 Test 152 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.178549 - 0: The maximum resident set size (KB) = 1069632 + 0: The total amount of wall time = 94.892388 + 0: The maximum resident set size (KB) = 1075128 Test 153 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.020550 - 0: The maximum resident set size (KB) = 1005340 + 0: The total amount of wall time = 144.125254 + 0: The maximum resident set size (KB) = 1002908 Test 154 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.688396 - 0: The maximum resident set size (KB) = 991800 + 0: The total amount of wall time = 152.175450 + 0: The maximum resident set size (KB) = 1002000 Test 155 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.764805 - 0: The maximum resident set size (KB) = 1010808 + 0: The total amount of wall time = 149.592293 + 0: The maximum resident set size (KB) = 1011148 Test 156 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.607652 - 0: The maximum resident set size (KB) = 1112300 + 0: The total amount of wall time = 148.043186 + 0: The maximum resident set size (KB) = 1121668 Test 157 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.734282 - 0: The maximum resident set size (KB) = 1113892 + 0: The total amount of wall time = 149.452011 + 0: The maximum resident set size (KB) = 1120860 Test 158 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.200265 - 0: The maximum resident set size (KB) = 1008680 + 0: The total amount of wall time = 145.305709 + 0: The maximum resident set size (KB) = 1010968 Test 159 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5315,14 +5315,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 458.307597 - 0: The maximum resident set size (KB) = 1035672 + 0: The total amount of wall time = 444.009360 + 0: The maximum resident set size (KB) = 1034824 Test 160 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5331,77 +5331,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.349873 - 0: The maximum resident set size (KB) = 996164 + 0: The total amount of wall time = 439.591195 + 0: The maximum resident set size (KB) = 1012952 Test 161 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.406145 - 0: The maximum resident set size (KB) = 1119936 + 0: The total amount of wall time = 148.844788 + 0: The maximum resident set size (KB) = 1124624 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.516019 - 0: The maximum resident set size (KB) = 2461876 + 0: The total amount of wall time = 207.346807 + 0: The maximum resident set size (KB) = 2359104 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 211.784420 - 0: The maximum resident set size (KB) = 2448488 + 0: The total amount of wall time = 209.688795 + 0: The maximum resident set size (KB) = 2459408 Test 164 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 359.897814 - 0: The maximum resident set size (KB) = 1043796 + 0: The total amount of wall time = 356.196799 + 0: The maximum resident set size (KB) = 1045240 Test 165 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.560212 - 0: The maximum resident set size (KB) = 1114740 + 0: The total amount of wall time = 155.705306 + 0: The maximum resident set size (KB) = 1102812 Test 166 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.920207 - 0: The maximum resident set size (KB) = 255948 + 0: The total amount of wall time = 9.983000 + 0: The maximum resident set size (KB) = 260396 Test 167 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.599807 - 0: The maximum resident set size (KB) = 260356 + 0: The total amount of wall time = 11.823424 + 0: The maximum resident set size (KB) = 246796 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5518,64 +5518,64 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 203.928767 - 0: The maximum resident set size (KB) = 1626548 + 0: The total amount of wall time = 213.320896 + 0: The maximum resident set size (KB) = 1630660 Test 169 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.864080 - 0: The maximum resident set size (KB) = 1660880 + 0: The total amount of wall time = 96.059934 + 0: The maximum resident set size (KB) = 1663692 Test 170 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5586,47 +5586,47 @@ Checking test 171 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.645017 - 0: The maximum resident set size (KB) = 616612 + 0: The total amount of wall time = 90.031878 + 0: The maximum resident set size (KB) = 663704 Test 171 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5638,46 +5638,46 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.798610 - 0: The maximum resident set size (KB) = 3013520 + 0: The total amount of wall time = 238.011253 + 0: The maximum resident set size (KB) = 3007512 Test 172 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5689,46 +5689,46 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.160935 - 0: The maximum resident set size (KB) = 3073904 + 0: The total amount of wall time = 287.478432 + 0: The maximum resident set size (KB) = 3072576 Test 173 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5740,46 +5740,46 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.920230 - 0: The maximum resident set size (KB) = 3087948 + 0: The total amount of wall time = 289.031099 + 0: The maximum resident set size (KB) = 3077048 Test 174 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5788,42 +5788,42 @@ Checking test 175 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 635.852082 - 0: The maximum resident set size (KB) = 5591296 + 0: The total amount of wall time = 629.510844 + 0: The maximum resident set size (KB) = 5569424 Test 175 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1192.919198 - 0: The maximum resident set size (KB) = 4959524 + 0: The total amount of wall time = 1219.371550 + 0: The maximum resident set size (KB) = 4956384 Test 176 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230920/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1902/stmp/zshrader/FV3_RT/rt_336495/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5832,19 +5832,19 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 571.220095 - 0: The maximum resident set size (KB) = 5593328 + 0: The total amount of wall time = 557.431655 + 0: The maximum resident set size (KB) = 5380908 Test 177 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 10:26:27 CDT 2023 -Elapsed time: 01h:37m:35s. Have a nice day! +Sun Sep 24 10:50:57 CDT 2023 +Elapsed time: 01h:24m:18s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f0f4052e65..2d71e4efb5 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,50 +1,50 @@ -Thu Sep 21 14:06:22 UTC 2023 +Mon Sep 25 17:55:32 UTC 2023 Start Regression test -Testing UFSWM Hash: 1cd4d5325a3f9a4c3c1a6b2968872a84037b0297 +Testing UFSWM Hash: 3b1edf5180ab35eea2c4855d6b1fc035e021be3b Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 0d0f2b4933895a6bd3ce1d2f6c92161a20127cb0 CICE-interface/CICE (CICE6.0.0-485-g0d0f2b4) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - bbc5bf849cab2ff86035bbe706b0c09616bb5838 FV3 (heads/develop) + d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 749 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 554 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1705 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 711 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1494 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 823 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 912 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1145 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 592 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1318 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 632 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 631 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 440 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 912 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 941 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1297 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 672 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1520 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1057 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 544 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 2663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1803 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 603 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 989 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 681 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1043 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -109,14 +109,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 358.827742 -The maximum resident set size (KB) = 2967168 +The total amount of wall time = 381.305300 +The maximum resident set size (KB) = 2968196 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -180,14 +180,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 272.828442 -The maximum resident set size (KB) = 1570220 +The total amount of wall time = 294.806817 +The maximum resident set size (KB) = 1570448 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -252,14 +252,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.732115 -The maximum resident set size (KB) = 2994224 +The total amount of wall time = 389.298366 +The maximum resident set size (KB) = 2992836 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -312,14 +312,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.950124 -The maximum resident set size (KB) = 3057244 +The total amount of wall time = 269.272545 +The maximum resident set size (KB) = 3056988 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -384,14 +384,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.164993 -The maximum resident set size (KB) = 3012828 +The total amount of wall time = 390.486371 +The maximum resident set size (KB) = 3005256 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -444,14 +444,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 243.247637 -The maximum resident set size (KB) = 2892400 +The total amount of wall time = 289.976682 +The maximum resident set size (KB) = 2895712 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -504,14 +504,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 351.395265 -The maximum resident set size (KB) = 3299204 +The total amount of wall time = 345.809092 +The maximum resident set size (KB) = 3301696 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +564,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.360267 -The maximum resident set size (KB) = 2990288 +The total amount of wall time = 384.050451 +The maximum resident set size (KB) = 2989644 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.134247 -The maximum resident set size (KB) = 2925744 +The total amount of wall time = 324.627127 +The maximum resident set size (KB) = 2925368 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.738093 -The maximum resident set size (KB) = 2997488 +The total amount of wall time = 384.834913 +The maximum resident set size (KB) = 2992200 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -751,14 +751,14 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 794.525266 -The maximum resident set size (KB) = 3951624 +The total amount of wall time = 821.901821 +The maximum resident set size (KB) = 3952156 Test 011 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_bmark_p8_intel Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -806,14 +806,14 @@ Checking test 012 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 691.247962 -The maximum resident set size (KB) = 4246540 +The total amount of wall time = 597.641933 +The maximum resident set size (KB) = 4244944 Test 012 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -877,14 +877,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 301.662553 -The maximum resident set size (KB) = 1578844 +The total amount of wall time = 284.123500 +The maximum resident set size (KB) = 1585612 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -946,14 +946,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 316.064770 -The maximum resident set size (KB) = 1625184 +The total amount of wall time = 299.628902 +The maximum resident set size (KB) = 1629868 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 325.644061 -The maximum resident set size (KB) = 1632924 +The total amount of wall time = 300.492175 +The maximum resident set size (KB) = 1634648 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1072,14 +1072,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 451.483678 -The maximum resident set size (KB) = 2648648 +The total amount of wall time = 436.013985 +The maximum resident set size (KB) = 2645888 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.574517 -The maximum resident set size (KB) = 3000652 +The total amount of wall time = 381.062108 +The maximum resident set size (KB) = 2995408 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_pdlib_p8_intel Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1215,14 @@ Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1170.957692 -The maximum resident set size (KB) = 1603172 +The total amount of wall time = 1162.439082 +The maximum resident set size (KB) = 1595996 Test 018 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_pdlib_p8_intel Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1274,14 +1274,14 @@ Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 605.867487 -The maximum resident set size (KB) = 879164 +The total amount of wall time = 572.647236 +The maximum resident set size (KB) = 879572 Test 019 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_mpi_pdlib_p8_intel Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1075.168799 -The maximum resident set size (KB) = 1589308 +The total amount of wall time = 1066.043464 +The maximum resident set size (KB) = 1581172 Test 020 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_debug_pdlib_p8_intel Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1404,14 +1404,14 @@ Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1427.888179 -The maximum resident set size (KB) = 1629236 +The total amount of wall time = 1439.556945 +The maximum resident set size (KB) = 1626276 Test 021 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1422,14 +1422,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.703986 -The maximum resident set size (KB) = 559776 +The total amount of wall time = 215.745602 +The maximum resident set size (KB) = 562512 Test 022 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1456,14 +1456,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.877079 -The maximum resident set size (KB) = 514160 +The total amount of wall time = 140.612797 +The maximum resident set size (KB) = 511384 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.544647 -The maximum resident set size (KB) = 517448 +The total amount of wall time = 143.349558 +The maximum resident set size (KB) = 522568 Test 024 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1496,14 +1496,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.742028 -The maximum resident set size (KB) = 511224 +The total amount of wall time = 138.861001 +The maximum resident set size (KB) = 515756 Test 025 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1514,14 +1514,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.895893 -The maximum resident set size (KB) = 512452 +The total amount of wall time = 140.327827 +The maximum resident set size (KB) = 511348 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1560,14 +1560,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.751200 -The maximum resident set size (KB) = 671172 +The total amount of wall time = 335.134075 +The maximum resident set size (KB) = 671932 Test 027 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1578,14 +1578,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 535.047562 -The maximum resident set size (KB) = 611248 +The total amount of wall time = 547.899077 +The maximum resident set size (KB) = 616136 Test 028 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1596,14 +1596,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.151709 -The maximum resident set size (KB) = 1069796 +The total amount of wall time = 594.758707 +The maximum resident set size (KB) = 1064072 Test 029 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 510.266722 -The maximum resident set size (KB) = 1161948 +The total amount of wall time = 514.554997 +The maximum resident set size (KB) = 1197368 Test 030 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1664,28 +1664,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.738118 -The maximum resident set size (KB) = 519336 +The total amount of wall time = 99.185275 +The maximum resident set size (KB) = 517588 Test 031 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.256801 -The maximum resident set size (KB) = 349344 +The total amount of wall time = 54.941189 +The maximum resident set size (KB) = 445400 Test 032 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 86.679725 -The maximum resident set size (KB) = 516084 +The total amount of wall time = 91.004529 +The maximum resident set size (KB) = 518208 Test 033 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.849482 -The maximum resident set size (KB) = 515296 +The total amount of wall time = 157.965822 +The maximum resident set size (KB) = 510880 Test 034 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1740,14 +1740,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.056155 -The maximum resident set size (KB) = 516684 +The total amount of wall time = 151.598651 +The maximum resident set size (KB) = 515784 Test 035 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1794,14 +1794,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.455936 -The maximum resident set size (KB) = 1493748 +The total amount of wall time = 256.154082 +The maximum resident set size (KB) = 1494060 Test 036 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1840,14 +1840,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 104.531759 -The maximum resident set size (KB) = 700832 +The total amount of wall time = 114.331309 +The maximum resident set size (KB) = 700200 Test 037 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1894,14 +1894,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 186.803277 -The maximum resident set size (KB) = 1500064 +The total amount of wall time = 226.062462 +The maximum resident set size (KB) = 1498844 Test 038 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1940,14 +1940,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 105.775374 -The maximum resident set size (KB) = 666748 +The total amount of wall time = 135.961280 +The maximum resident set size (KB) = 671704 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1990,14 +1990,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.522946 -The maximum resident set size (KB) = 1487032 +The total amount of wall time = 196.799849 +The maximum resident set size (KB) = 1485480 Test 040 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.392148 -The maximum resident set size (KB) = 1580280 +The total amount of wall time = 163.288513 +The maximum resident set size (KB) = 1576824 Test 041 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2066,14 +2066,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 326.889555 -The maximum resident set size (KB) = 1497596 +The total amount of wall time = 405.270999 +The maximum resident set size (KB) = 1486516 Test 042 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.119170 -The maximum resident set size (KB) = 1547968 +The total amount of wall time = 250.480894 +The maximum resident set size (KB) = 1547168 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.500273 -The maximum resident set size (KB) = 1502564 +The total amount of wall time = 226.805239 +The maximum resident set size (KB) = 1492068 Test 044 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2228,14 +2228,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.395986 -The maximum resident set size (KB) = 1494140 +The total amount of wall time = 245.851718 +The maximum resident set size (KB) = 1499840 Test 045 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2246,28 +2246,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.254332 -The maximum resident set size (KB) = 874092 +The total amount of wall time = 329.740797 +The maximum resident set size (KB) = 872908 Test 046 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.979050 -The maximum resident set size (KB) = 864828 +The total amount of wall time = 163.164123 +The maximum resident set size (KB) = 864916 Test 047 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2278,28 +2278,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.000342 -The maximum resident set size (KB) = 867508 +The total amount of wall time = 303.104114 +The maximum resident set size (KB) = 868032 Test 048 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_restart_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.509306 -The maximum resident set size (KB) = 863436 +The total amount of wall time = 157.598246 +The maximum resident set size (KB) = 867880 Test 049 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2310,14 +2310,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.111891 -The maximum resident set size (KB) = 865564 +The total amount of wall time = 313.381906 +The maximum resident set size (KB) = 864624 Test 050 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 180.682720 -The maximum resident set size (KB) = 908548 +The total amount of wall time = 204.967777 +The maximum resident set size (KB) = 909312 Test 051 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2343,28 +2343,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 290.615528 -The maximum resident set size (KB) = 1141384 +The total amount of wall time = 323.254997 +The maximum resident set size (KB) = 1140556 Test 052 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 289.764962 -The maximum resident set size (KB) = 867252 +The total amount of wall time = 295.917538 +The maximum resident set size (KB) = 862220 Test 053 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2375,14 +2375,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.834925 -The maximum resident set size (KB) = 868188 +The total amount of wall time = 299.912267 +The maximum resident set size (KB) = 867192 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2393,14 +2393,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 372.505243 -The maximum resident set size (KB) = 621312 +The total amount of wall time = 385.516583 +The maximum resident set size (KB) = 618800 Test 055 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2447,14 +2447,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.260604 -The maximum resident set size (KB) = 898564 +The total amount of wall time = 409.913283 +The maximum resident set size (KB) = 895004 Test 056 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2465,14 +2465,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 249.010738 -The maximum resident set size (KB) = 1001968 +The total amount of wall time = 242.534877 +The maximum resident set size (KB) = 993004 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2519,14 +2519,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.486419 -The maximum resident set size (KB) = 892016 +The total amount of wall time = 418.333463 +The maximum resident set size (KB) = 895664 Test 058 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 366.705181 -The maximum resident set size (KB) = 976304 +The total amount of wall time = 369.711811 +The maximum resident set size (KB) = 974324 Test 059 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2619,14 +2619,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.104897 -The maximum resident set size (KB) = 806672 +The total amount of wall time = 246.395901 +The maximum resident set size (KB) = 810152 Test 060 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2673,14 +2673,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.897846 -The maximum resident set size (KB) = 894900 +The total amount of wall time = 410.269067 +The maximum resident set size (KB) = 894240 Test 061 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2727,14 +2727,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.507779 -The maximum resident set size (KB) = 890880 +The total amount of wall time = 430.181963 +The maximum resident set size (KB) = 890848 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2773,14 +2773,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.409825 -The maximum resident set size (KB) = 816132 +The total amount of wall time = 311.948151 +The maximum resident set size (KB) = 817448 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 401.697480 -The maximum resident set size (KB) = 890740 +The total amount of wall time = 401.048923 +The maximum resident set size (KB) = 890880 Test 064 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2849,14 +2849,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.335974 -The maximum resident set size (KB) = 579392 +The total amount of wall time = 472.679906 +The maximum resident set size (KB) = 578720 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2871,14 +2871,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 456.153236 -The maximum resident set size (KB) = 569456 +The total amount of wall time = 458.050238 +The maximum resident set size (KB) = 569512 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_gf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 410.615522 -The maximum resident set size (KB) = 890420 +The total amount of wall time = 415.129880 +The maximum resident set size (KB) = 894872 Test 067 hrrr_gf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_c3_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2979,14 +2979,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.280928 -The maximum resident set size (KB) = 897356 +The total amount of wall time = 415.500277 +The maximum resident set size (KB) = 894956 Test 068 hrrr_c3_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2997,14 +2997,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.893842 -The maximum resident set size (KB) = 582068 +The total amount of wall time = 351.416587 +The maximum resident set size (KB) = 579428 Test 069 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3015,14 +3015,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.799667 -The maximum resident set size (KB) = 583064 +The total amount of wall time = 355.057220 +The maximum resident set size (KB) = 581132 Test 070 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3033,26 +3033,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 185.377312 -The maximum resident set size (KB) = 554708 +The total amount of wall time = 195.976897 +The maximum resident set size (KB) = 550964 Test 071 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.969578 -The maximum resident set size (KB) = 331032 +The total amount of wall time = 120.882328 +The maximum resident set size (KB) = 330896 Test 072 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3099,14 +3099,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.722952 -The maximum resident set size (KB) = 1494668 +The total amount of wall time = 208.248862 +The maximum resident set size (KB) = 1490268 Test 073 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.421722 -The maximum resident set size (KB) = 864256 +The total amount of wall time = 292.229230 +The maximum resident set size (KB) = 868032 Test 074 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3151,348 +3151,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.730901 -The maximum resident set size (KB) = 671408 +The total amount of wall time = 161.389876 +The maximum resident set size (KB) = 677392 Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.544051 -The maximum resident set size (KB) = 674048 +The total amount of wall time = 175.438513 +The maximum resident set size (KB) = 677824 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.504912 -The maximum resident set size (KB) = 680976 +The total amount of wall time = 197.206110 +The maximum resident set size (KB) = 681956 Test 077 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.979609 -The maximum resident set size (KB) = 677772 +The total amount of wall time = 162.655115 +The maximum resident set size (KB) = 677112 Test 078 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.543473 -The maximum resident set size (KB) = 715020 +The total amount of wall time = 265.428870 +The maximum resident set size (KB) = 716676 Test 079 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.139889 -The maximum resident set size (KB) = 718108 +The total amount of wall time = 253.086698 +The maximum resident set size (KB) = 717264 Test 080 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.989371 -The maximum resident set size (KB) = 693200 +The total amount of wall time = 168.287391 +The maximum resident set size (KB) = 690064 Test 081 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.753094 -The maximum resident set size (KB) = 732344 +The total amount of wall time = 167.407029 +The maximum resident set size (KB) = 736240 Test 082 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 192.953889 -The maximum resident set size (KB) = 1511140 +The total amount of wall time = 193.582393 +The maximum resident set size (KB) = 1502104 Test 083 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1049.196290 -The maximum resident set size (KB) = 890652 +The total amount of wall time = 1041.596352 +The maximum resident set size (KB) = 886744 Test 084 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.409352 -The maximum resident set size (KB) = 1050868 +The total amount of wall time = 299.996811 +The maximum resident set size (KB) = 1054788 Test 085 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.657726 -The maximum resident set size (KB) = 1053552 +The total amount of wall time = 294.726991 +The maximum resident set size (KB) = 1052100 Test 086 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.802679 -The maximum resident set size (KB) = 1052124 +The total amount of wall time = 299.447784 +The maximum resident set size (KB) = 1056892 Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.771192 -The maximum resident set size (KB) = 1138096 +The total amount of wall time = 312.367476 +The maximum resident set size (KB) = 1140448 Test 088 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.851700 -The maximum resident set size (KB) = 1055520 +The total amount of wall time = 311.607078 +The maximum resident set size (KB) = 1052792 Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.008986 -The maximum resident set size (KB) = 1054632 +The total amount of wall time = 306.614965 +The maximum resident set size (KB) = 1054444 Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.971823 -The maximum resident set size (KB) = 1057484 +The total amount of wall time = 303.466663 +The maximum resident set size (KB) = 1052108 Test 091 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.752949 -The maximum resident set size (KB) = 1055508 +The total amount of wall time = 299.061617 +The maximum resident set size (KB) = 1055800 Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.812103 -The maximum resident set size (KB) = 1053776 +The total amount of wall time = 294.350130 +The maximum resident set size (KB) = 1055012 Test 093 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.288871 -The maximum resident set size (KB) = 1055964 +The total amount of wall time = 300.205321 +The maximum resident set size (KB) = 1055900 Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.309574 -The maximum resident set size (KB) = 1051452 +The total amount of wall time = 487.489366 +The maximum resident set size (KB) = 1054192 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.437187 -The maximum resident set size (KB) = 1050868 +The total amount of wall time = 293.376602 +The maximum resident set size (KB) = 1049204 Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 357.834471 -The maximum resident set size (KB) = 1057372 +The total amount of wall time = 354.558413 +The maximum resident set size (KB) = 1055524 Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.588406 -The maximum resident set size (KB) = 1052032 +The total amount of wall time = 297.681437 +The maximum resident set size (KB) = 1054412 Test 098 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.707205 -The maximum resident set size (KB) = 355076 +The total amount of wall time = 296.688926 +The maximum resident set size (KB) = 507948 Test 099 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3503,14 +3503,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 238.878782 -The maximum resident set size (KB) = 891728 +The total amount of wall time = 230.699269 +The maximum resident set size (KB) = 895592 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.169861 -The maximum resident set size (KB) = 778356 +The total amount of wall time = 343.243298 +The maximum resident set size (KB) = 779544 Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3611,14 +3611,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.822844 -The maximum resident set size (KB) = 777240 +The total amount of wall time = 184.293058 +The maximum resident set size (KB) = 775084 Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3665,14 +3665,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 181.204477 -The maximum resident set size (KB) = 788388 +The total amount of wall time = 178.663442 +The maximum resident set size (KB) = 782348 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3719,14 +3719,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 318.581490 -The maximum resident set size (KB) = 832364 +The total amount of wall time = 304.465216 +The maximum resident set size (KB) = 835988 Test 104 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3773,14 +3773,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.506098 -The maximum resident set size (KB) = 825032 +The total amount of wall time = 160.901301 +The maximum resident set size (KB) = 826636 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3827,14 +3827,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 195.530067 -The maximum resident set size (KB) = 776848 +The total amount of wall time = 192.880050 +The maximum resident set size (KB) = 773364 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3873,42 +3873,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.814356 -The maximum resident set size (KB) = 705988 +The total amount of wall time = 252.071515 +The maximum resident set size (KB) = 706120 Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.008140 -The maximum resident set size (KB) = 662076 +The total amount of wall time = 92.286587 +The maximum resident set size (KB) = 662684 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 105.107451 -The maximum resident set size (KB) = 629312 +The total amount of wall time = 97.469474 +The maximum resident set size (KB) = 628648 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3924,40 +3924,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 139.804300 -The maximum resident set size (KB) = 1054348 +The total amount of wall time = 131.633999 +The maximum resident set size (KB) = 1056800 Test 110 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 79.608907 -The maximum resident set size (KB) = 1060476 +The total amount of wall time = 69.483723 +The maximum resident set size (KB) = 1066664 Test 111 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 99.083179 -The maximum resident set size (KB) = 955024 +The total amount of wall time = 87.644419 +The maximum resident set size (KB) = 952828 Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4004,123 +4004,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.148972 -The maximum resident set size (KB) = 809036 +The total amount of wall time = 235.366048 +The maximum resident set size (KB) = 812632 Test 113 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.271016 -The maximum resident set size (KB) = 938208 +The total amount of wall time = 294.429499 +The maximum resident set size (KB) = 941872 Test 114 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.489862 -The maximum resident set size (KB) = 936300 +The total amount of wall time = 288.867641 +The maximum resident set size (KB) = 940556 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 918.480533 -The maximum resident set size (KB) = 1089620 +The total amount of wall time = 908.768841 +The maximum resident set size (KB) = 1088532 Test 116 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 533.705284 -The maximum resident set size (KB) = 1093372 +The total amount of wall time = 526.025499 +The maximum resident set size (KB) = 1095004 Test 117 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 918.922824 -The maximum resident set size (KB) = 1156784 +The total amount of wall time = 906.684424 +The maximum resident set size (KB) = 1156172 Test 118 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.674975 -The maximum resident set size (KB) = 961000 +The total amount of wall time = 299.659335 +The maximum resident set size (KB) = 956168 Test 119 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.544647 -The maximum resident set size (KB) = 1119032 +The total amount of wall time = 258.093553 +The maximum resident set size (KB) = 1120200 Test 120 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 314.381631 -The maximum resident set size (KB) = 1476260 +The total amount of wall time = 299.154949 +The maximum resident set size (KB) = 1495764 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 400.730496 -The maximum resident set size (KB) = 1104748 +The total amount of wall time = 388.132167 +The maximum resident set size (KB) = 1113300 Test 122 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4145,14 +4145,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 718.003713 -The maximum resident set size (KB) = 1182500 +The total amount of wall time = 712.394483 +The maximum resident set size (KB) = 1186804 Test 123 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4163,14 +4163,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 907.031081 -The maximum resident set size (KB) = 1159600 +The total amount of wall time = 904.777963 +The maximum resident set size (KB) = 1160504 Test 124 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_1nest_atm_intel Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4192,14 +4192,14 @@ Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 316.409273 -The maximum resident set size (KB) = 534128 +The total amount of wall time = 315.111575 +The maximum resident set size (KB) = 533584 Test 125 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_1nest_atm_qr_intel Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,14 +4221,14 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 345.259205 -The maximum resident set size (KB) = 384676 +The total amount of wall time = 335.990055 +The maximum resident set size (KB) = 383164 Test 126 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4237,14 +4237,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 382.665942 -The maximum resident set size (KB) = 542712 +The total amount of wall time = 380.779507 +The maximum resident set size (KB) = 541652 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4291,14 +4291,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 165.927259 -The maximum resident set size (KB) = 303568 +The total amount of wall time = 165.072983 +The maximum resident set size (KB) = 507948 Test 128 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_1nest_atm_qr_intel Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4345,14 +4345,14 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 179.865828 -The maximum resident set size (KB) = 286660 +The total amount of wall time = 173.386334 +The maximum resident set size (KB) = 451632 Test 129 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_multiple_4nests_atm_intel Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4434,14 +4434,14 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 478.235466 -The maximum resident set size (KB) = 375996 +The total amount of wall time = 470.792669 +The maximum resident set size (KB) = 375912 Test 130 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_multiple_4nests_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_multiple_4nests_atm_qr_intel Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4523,14 +4523,14 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 555.725505 -The maximum resident set size (KB) = 384780 +The total amount of wall time = 530.567656 +The maximum resident set size (KB) = 378848 Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_specified_moving_1nest_atm_intel Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 214.174370 -The maximum resident set size (KB) = 547824 +The total amount of wall time = 217.602269 +The maximum resident set size (KB) = 548100 Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_intel Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4568,14 +4568,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 197.077598 -The maximum resident set size (KB) = 549336 +The total amount of wall time = 201.887004 +The maximum resident set size (KB) = 555412 Test 133 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4597,14 +4597,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 255.465168 -The maximum resident set size (KB) = 439772 +The total amount of wall time = 230.767008 +The maximum resident set size (KB) = 416912 Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4613,42 +4613,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 260.453030 -The maximum resident set size (KB) = 609220 +The total amount of wall time = 253.622127 +The maximum resident set size (KB) = 596336 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 83.036623 -The maximum resident set size (KB) = 331212 +The total amount of wall time = 84.319133 +The maximum resident set size (KB) = 323288 Test 136 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 819.302069 -The maximum resident set size (KB) = 600856 +The total amount of wall time = 806.692064 +The maximum resident set size (KB) = 626624 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4659,14 +4659,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 510.313787 -The maximum resident set size (KB) = 661580 +The total amount of wall time = 508.637282 +The maximum resident set size (KB) = 666208 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_atmlnd_sbs_intel Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4751,14 +4751,14 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 262.252267 -The maximum resident set size (KB) = 1545184 +The total amount of wall time = 238.229243 +The maximum resident set size (KB) = 1554076 Test 139 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_intel Checking test 140 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4802,14 +4802,14 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.801779 -The maximum resident set size (KB) = 2824340 +The total amount of wall time = 252.671350 +The maximum resident set size (KB) = 2824672 Test 140 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_rad_intel Checking test 141 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4853,14 +4853,14 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.454539 -The maximum resident set size (KB) = 2887352 +The total amount of wall time = 284.444027 +The maximum resident set size (KB) = 2889528 Test 141 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_rad_micro_intel Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4904,14 +4904,14 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.067668 -The maximum resident set size (KB) = 2903296 +The total amount of wall time = 290.379413 +The maximum resident set size (KB) = 2898672 Test 142 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_atmaq_intel Checking test 143 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4927,14 +4927,14 @@ Checking test 143 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 718.479588 -The maximum resident set size (KB) = 5322296 +The total amount of wall time = 685.944178 +The maximum resident set size (KB) = 5323432 Test 143 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230920/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_130682/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_atmaq_debug_intel Checking test 144 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4948,12 +4948,12 @@ Checking test 144 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1376.611481 -The maximum resident set size (KB) = 4832156 +The total amount of wall time = 1337.824676 +The maximum resident set size (KB) = 4827464 Test 144 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 21 15:19:07 UTC 2023 -Elapsed time: 01h:12m:45s. Have a nice day! +Mon Sep 25 19:07:19 UTC 2023 +Elapsed time: 01h:11m:48s. Have a nice day! From 83e477f7b3de22728853107d742b064c4641a32d Mon Sep 17 00:00:00 2001 From: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Date: Thu, 28 Sep 2023 14:03:37 -0600 Subject: [PATCH 05/10] Pbl tapering (#1910) *add pbl_tapering for SPPT *Add possibility to run the CA on a single tile, ensure decomposition of domain is proportional between the atmosphere domain and the higher resolution CA domain --- stochastic_physics | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 221 +-- ...sts_cpld_control_nowave_noaero_p8_hera.log | 32 +- .../OpnReqTests_regional_control_hera.log | 31 +- tests/logs/RegressionTests_acorn.log | 1078 ++++++------ tests/logs/RegressionTests_gaea.log | 1086 ++++++------ tests/logs/RegressionTests_hera.log | 1532 ++++++++--------- tests/logs/RegressionTests_hercules.log | 1494 ++++++++-------- tests/logs/RegressionTests_jet.log | 968 +++++------ tests/logs/RegressionTests_orion.log | 1158 ++++++------- tests/logs/RegressionTests_wcoss2.log | 1001 +++++------ 11 files changed, 4243 insertions(+), 4360 deletions(-) diff --git a/stochastic_physics b/stochastic_physics index 1ee7cc9a8b..62b89146be 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 +Subproject commit 62b89146be1250f354cd50a14096c0c25f2f3952 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 85364dda4e..55f4c841a5 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,12 @@ -Fri Sep 22 15:38:56 UTC 2023 +Thu Sep 28 06:19:01 UTC 2023 Start Operation Requirement Test +Compile bit elapsed time 200 seconds. -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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile dbg elapsed time 104 seconds. -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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile std elapsed time 199 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -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_230078/control_p8_gnu_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +54,14 @@ Moving baseline bit_base control_p8_gnu 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 = 296.773611 - 0: The maximum resident set size (KB) = 1292260 + 0: The total amount of wall time = 296.142721 + 0: The maximum resident set size (KB) = 1288112 Test bit_base control_p8_gnu 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_230078/control_p8_gnu_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +109,14 @@ Moving baseline dbg_base control_p8_gnu 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 = 972.674817 - 0: The maximum resident set size (KB) = 1281472 + 0: The total amount of wall time = 981.239219 + 0: The maximum resident set size (KB) = 1281056 Test dbg_base control_p8_gnu 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_230078/control_p8_gnu_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +163,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.071350 - 0: The maximum resident set size (KB) = 1272756 + 0: The total amount of wall time = 263.993791 + 0: The maximum resident set size (KB) = 1271608 Test dcp control_p8_gnu 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_230078/control_p8_gnu_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,124 +217,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.533921 - 0: The maximum resident set size (KB) = 1273320 + 0: The total amount of wall time = 261.821420 + 0: The maximum resident set size (KB) = 1272220 Test mpi control_p8_gnu 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_230078/control_p8_gnu_std_base -Checking test std_base control_p8_gnu results .... -Moving baseline std_base control_p8_gnu files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 262.828910 - 0: The maximum resident set size (KB) = 1271868 - -Test std_base control_p8_gnu 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_230078/control_p8_gnu_thr -Checking test thr control_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 268.095572 - 0: The maximum resident set size (KB) = 1275032 - -Test thr control_p8_gnu 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_75937/control_p8_gnu_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -378,14 +271,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.074955 - 0: The maximum resident set size (KB) = 1273672 + 0: The total amount of wall time = 265.397416 + 0: The maximum resident set size (KB) = 1272888 Test rst control_p8_gnu 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_75937/control_p8_gnu_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -433,11 +326,65 @@ Moving baseline std_base control_p8_gnu 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 = 265.183430 - 0: The maximum resident set size (KB) = 1275120 + 0: The total amount of wall time = 264.007621 + 0: The maximum resident set size (KB) = 1272592 Test std_base control_p8_gnu PASS + +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_thr +Checking test thr control_p8_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 264.748647 + 0: The maximum resident set size (KB) = 1271232 + +Test thr control_p8_gnu PASS + OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 22 17:34:17 UTC 2023 -Elapsed time: 00h:17m:08s. Have a nice day! +Thu Sep 28 06:43:18 UTC 2023 +Elapsed time: 00h:24m:18s. 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 e6fc7f3b3c..cf5e3f74cd 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,11 @@ -Fri Sep 22 16:13:42 UTC 2023 +Thu Sep 28 06:24:59 UTC 2023 Start Operation Requirement Test +Compile dbg elapsed time 118 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile std elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -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_67539/cpld_control_nowave_noaero_p8_gnu_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +68,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu 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 = 1335.447978 - 0: The maximum resident set size (KB) = 1415044 + 0: The total amount of wall time = 1338.997302 + 0: The maximum resident set size (KB) = 1411472 Test dbg_base cpld_control_nowave_noaero_p8_gnu 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_67539/cpld_control_nowave_noaero_p8_gnu_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +137,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 401.479045 - 0: The maximum resident set size (KB) = 1401856 + 0: The total amount of wall time = 406.961254 + 0: The maximum resident set size (KB) = 1404968 Test rst cpld_control_nowave_noaero_p8_gnu 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_67539/cpld_control_nowave_noaero_p8_gnu_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +207,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu 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 = 410.762528 - 0: The maximum resident set size (KB) = 1402244 + 0: The total amount of wall time = 410.847589 + 0: The maximum resident set size (KB) = 1403172 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 22 17:14:33 UTC 2023 -Elapsed time: 01h:00m:52s. Have a nice day! +Thu Sep 28 06:54:27 UTC 2023 +Elapsed time: 00h:29m:29s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d02e63cb6a..a335239581 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,10 @@ -Fri Sep 22 16:14:55 UTC 2023 +Thu Sep 28 06:30:35 UTC 2023 Start Operation Requirement Test +Compile std elapsed time 201 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -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_307172/regional_control_gnu_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +15,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 515.053146 - 0: The maximum resident set size (KB) = 811988 + 0: The total amount of wall time = 513.747809 + 0: The maximum resident set size (KB) = 804952 Test dcp regional_control_gnu 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_307172/regional_control_gnu_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +34,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 516.722431 - 0: The maximum resident set size (KB) = 807528 + 0: The total amount of wall time = 505.577903 + 0: The maximum resident set size (KB) = 805676 Test std_base regional_control_gnu 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_307172/regional_control_gnu_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +52,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 514.077266 - 0: The maximum resident set size (KB) = 806896 + 0: The total amount of wall time = 516.790745 + 0: The maximum resident set size (KB) = 807676 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Sep 22 16:57:28 UTC 2023 -Elapsed time: 00h:42m:33s. Have a nice day! +Thu Sep 28 06:59:22 UTC 2023 +Elapsed time: 00h:28m:48s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 4db3653b6a..65ee36488b 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Mon Sep 25 17:39:13 UTC 2023 +Thu Sep 28 13:05:15 UTC 2023 Start Regression test -Testing UFSWM Hash: 3b1edf5180ab35eea2c4855d6b1fc035e021be3b +Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 372 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 470 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 482 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1912 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 511 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 664 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 847 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 498 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 785 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 516 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 739 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 541 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 1587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1182 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 882 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 969 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 565 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1509 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atmaero_intel elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 474 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 854 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1052 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 610 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 812 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 746 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 506 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 287 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 616 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 77 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 592 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 823 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 621 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 664 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 905 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1718 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1083 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 556 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1361 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 558 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 537 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 1241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +114,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.185193 -The maximum resident set size (KB) = 2969472 +The total amount of wall time = 326.319011 +The maximum resident set size (KB) = 2965960 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +185,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 243.087446 -The maximum resident set size (KB) = 1566284 +The total amount of wall time = 244.654937 +The maximum resident set size (KB) = 1568336 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +257,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.590807 -The maximum resident set size (KB) = 2996456 +The total amount of wall time = 374.950575 +The maximum resident set size (KB) = 2995716 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +317,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 219.294629 -The maximum resident set size (KB) = 3055832 +The total amount of wall time = 218.486875 +The maximum resident set size (KB) = 3056448 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +389,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.830979 -The maximum resident set size (KB) = 3009864 +The total amount of wall time = 376.881399 +The maximum resident set size (KB) = 3009888 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 223.011057 -The maximum resident set size (KB) = 2894908 +The total amount of wall time = 222.227916 +The maximum resident set size (KB) = 2895144 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +509,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.431353 -The maximum resident set size (KB) = 3301692 +The total amount of wall time = 331.993211 +The maximum resident set size (KB) = 3302724 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +569,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.962558 -The maximum resident set size (KB) = 2995132 +The total amount of wall time = 370.668860 +The maximum resident set size (KB) = 2995688 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +629,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 310.858997 -The maximum resident set size (KB) = 2929484 +The total amount of wall time = 311.588126 +The maximum resident set size (KB) = 2930084 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +701,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.788700 -The maximum resident set size (KB) = 3000440 +The total amount of wall time = 374.862629 +The maximum resident set size (KB) = 2998120 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 271.789593 -The maximum resident set size (KB) = 1575936 +The total amount of wall time = 274.190987 +The maximum resident set size (KB) = 1580344 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 286.443257 -The maximum resident set size (KB) = 1632972 +The total amount of wall time = 290.214927 +The maximum resident set size (KB) = 1634856 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 287.897485 -The maximum resident set size (KB) = 1643940 +The total amount of wall time = 285.071148 +The maximum resident set size (KB) = 1633784 Test 013 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 426.834813 -The maximum resident set size (KB) = 2650744 +The total amount of wall time = 425.700951 +The maximum resident set size (KB) = 2651064 Test 014 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.508530 -The maximum resident set size (KB) = 2995840 +The total amount of wall time = 367.825365 +The maximum resident set size (KB) = 2998908 Test 015 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.272762 -The maximum resident set size (KB) = 569108 +The total amount of wall time = 212.278814 +The maximum resident set size (KB) = 565004 Test 016 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.123130 -The maximum resident set size (KB) = 514408 +The total amount of wall time = 129.572893 +The maximum resident set size (KB) = 515584 Test 017 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.600956 -The maximum resident set size (KB) = 522836 +The total amount of wall time = 134.856969 +The maximum resident set size (KB) = 521004 Test 018 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.477117 -The maximum resident set size (KB) = 521232 +The total amount of wall time = 131.153582 +The maximum resident set size (KB) = 518796 Test 019 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,14 +1149,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.611918 -The maximum resident set size (KB) = 516672 +The total amount of wall time = 133.747719 +The maximum resident set size (KB) = 521644 Test 020 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.834782 -The maximum resident set size (KB) = 672268 +The total amount of wall time = 326.517276 +The maximum resident set size (KB) = 675556 Test 021 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 524.999175 -The maximum resident set size (KB) = 622092 +The total amount of wall time = 524.389607 +The maximum resident set size (KB) = 621360 Test 022 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 557.665458 -The maximum resident set size (KB) = 1069584 +The total amount of wall time = 558.662673 +The maximum resident set size (KB) = 1066848 Test 023 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 488.973949 -The maximum resident set size (KB) = 1168452 +The total amount of wall time = 491.053796 +The maximum resident set size (KB) = 1169424 Test 024 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.785686 -The maximum resident set size (KB) = 521972 +The total amount of wall time = 89.184191 +The maximum resident set size (KB) = 523448 Test 025 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.199456 -The maximum resident set size (KB) = 352732 +The total amount of wall time = 48.599764 +The maximum resident set size (KB) = 351692 Test 026 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.465731 -The maximum resident set size (KB) = 524176 +The total amount of wall time = 82.756597 +The maximum resident set size (KB) = 522796 Test 027 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.267105 -The maximum resident set size (KB) = 520184 +The total amount of wall time = 133.321705 +The maximum resident set size (KB) = 522784 Test 028 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.241702 -The maximum resident set size (KB) = 516784 +The total amount of wall time = 133.138042 +The maximum resident set size (KB) = 515264 Test 029 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.623168 -The maximum resident set size (KB) = 1486772 +The total amount of wall time = 170.304434 +The maximum resident set size (KB) = 1488692 Test 030 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1475,14 +1475,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 96.855750 -The maximum resident set size (KB) = 702888 +The total amount of wall time = 92.625905 +The maximum resident set size (KB) = 703340 Test 031 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 169.155012 -The maximum resident set size (KB) = 1506736 +The total amount of wall time = 170.028535 +The maximum resident set size (KB) = 1502960 Test 032 control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1575,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 97.657779 -The maximum resident set size (KB) = 674692 +The total amount of wall time = 93.657967 +The maximum resident set size (KB) = 674140 Test 033 control_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.837543 -The maximum resident set size (KB) = 1489192 +The total amount of wall time = 173.050617 +The maximum resident set size (KB) = 1494232 Test 034 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 146.270709 -The maximum resident set size (KB) = 1577988 +The total amount of wall time = 146.823651 +The maximum resident set size (KB) = 1574568 Test 035 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 306.987398 -The maximum resident set size (KB) = 1498644 +The total amount of wall time = 308.177935 +The maximum resident set size (KB) = 1499420 Test 036 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 224.493041 -The maximum resident set size (KB) = 1551968 +The total amount of wall time = 224.578842 +The maximum resident set size (KB) = 1551548 Test 037 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 171.086593 -The maximum resident set size (KB) = 1491812 +The total amount of wall time = 171.844716 +The maximum resident set size (KB) = 1502216 Test 038 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,14 +1863,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 193.558837 -The maximum resident set size (KB) = 1497428 +The total amount of wall time = 192.900308 +The maximum resident set size (KB) = 1497572 Test 039 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.556402 -The maximum resident set size (KB) = 874056 +The total amount of wall time = 277.248059 +The maximum resident set size (KB) = 871392 Test 040 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 147.467861 -The maximum resident set size (KB) = 865916 +The total amount of wall time = 144.485574 +The maximum resident set size (KB) = 864408 Test 041 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.070886 -The maximum resident set size (KB) = 872444 +The total amount of wall time = 275.799600 +The maximum resident set size (KB) = 870392 Test 042 regional_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 147.286499 -The maximum resident set size (KB) = 866376 +The total amount of wall time = 146.420911 +The maximum resident set size (KB) = 870436 Test 043 regional_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.572162 -The maximum resident set size (KB) = 867276 +The total amount of wall time = 292.388155 +The maximum resident set size (KB) = 866908 Test 044 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.885241 -The maximum resident set size (KB) = 916008 +The total amount of wall time = 162.857539 +The maximum resident set size (KB) = 908392 Test 045 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1978,14 +1978,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 275.571983 -The maximum resident set size (KB) = 1142636 +The total amount of wall time = 274.893215 +The maximum resident set size (KB) = 1141028 Test 046 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.379794 -The maximum resident set size (KB) = 872552 +The total amount of wall time = 278.037203 +The maximum resident set size (KB) = 874080 Test 047 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 353.995194 -The maximum resident set size (KB) = 624372 +The total amount of wall time = 354.652165 +The maximum resident set size (KB) = 622824 Test 048 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.207726 -The maximum resident set size (KB) = 875412 +The total amount of wall time = 307.743435 +The maximum resident set size (KB) = 869440 Test 049 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 322.632438 -The maximum resident set size (KB) = 872308 +The total amount of wall time = 323.097053 +The maximum resident set size (KB) = 866332 Test 050 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.958173 -The maximum resident set size (KB) = 912120 +The total amount of wall time = 187.470811 +The maximum resident set size (KB) = 906048 Test 051 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.483082 -The maximum resident set size (KB) = 901648 +The total amount of wall time = 403.387668 +The maximum resident set size (KB) = 903180 Test 052 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.193837 -The maximum resident set size (KB) = 1002824 +The total amount of wall time = 232.721579 +The maximum resident set size (KB) = 1003420 Test 053 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2194,14 +2194,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.732725 -The maximum resident set size (KB) = 902316 +The total amount of wall time = 415.498965 +The maximum resident set size (KB) = 898084 Test 054 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 363.077420 -The maximum resident set size (KB) = 982732 +The total amount of wall time = 361.512258 +The maximum resident set size (KB) = 980580 Test 055 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2294,14 +2294,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.907846 -The maximum resident set size (KB) = 808368 +The total amount of wall time = 203.781803 +The maximum resident set size (KB) = 811696 Test 056 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2348,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.258511 -The maximum resident set size (KB) = 899128 +The total amount of wall time = 402.001074 +The maximum resident set size (KB) = 901572 Test 057 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.373076 -The maximum resident set size (KB) = 897980 +The total amount of wall time = 417.058099 +The maximum resident set size (KB) = 897604 Test 058 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.288003 -The maximum resident set size (KB) = 820428 +The total amount of wall time = 297.803371 +The maximum resident set size (KB) = 819716 Test 059 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2502,14 +2502,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 385.913390 -The maximum resident set size (KB) = 901092 +The total amount of wall time = 385.469805 +The maximum resident set size (KB) = 901268 Test 060 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 384.963962 -The maximum resident set size (KB) = 908612 +The total amount of wall time = 384.102866 +The maximum resident set size (KB) = 909336 Test 061 hrrr_control_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2610,14 +2610,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 397.479156 -The maximum resident set size (KB) = 900000 +The total amount of wall time = 397.705269 +The maximum resident set size (KB) = 895884 Test 062 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2664,42 +2664,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 344.378086 -The maximum resident set size (KB) = 971788 +The total amount of wall time = 343.848879 +The maximum resident set size (KB) = 972740 Test 063 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 286.137042 -The maximum resident set size (KB) = 770316 +The total amount of wall time = 285.845781 +The maximum resident set size (KB) = 770392 Test 064 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 288.755963 -The maximum resident set size (KB) = 678324 +The total amount of wall time = 288.626601 +The maximum resident set size (KB) = 677428 Test 065 hrrr_control_restart_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2746,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.375312 -The maximum resident set size (KB) = 896868 +The total amount of wall time = 394.937239 +The maximum resident set size (KB) = 896516 Test 066 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.654284 -The maximum resident set size (KB) = 585440 +The total amount of wall time = 463.556407 +The maximum resident set size (KB) = 588336 Test 067 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 450.489832 -The maximum resident set size (KB) = 576040 +The total amount of wall time = 450.582651 +The maximum resident set size (KB) = 575316 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_gf_intel Checking test 069 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 069 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.444021 -The maximum resident set size (KB) = 899716 +The total amount of wall time = 402.075749 +The maximum resident set size (KB) = 899432 Test 069 hrrr_gf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_c3_intel Checking test 070 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 070 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.698693 -The maximum resident set size (KB) = 898648 +The total amount of wall time = 404.597321 +The maximum resident set size (KB) = 899352 Test 070 hrrr_c3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmg_intel Checking test 071 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2916,14 +2916,14 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.819888 -The maximum resident set size (KB) = 585500 +The total amount of wall time = 332.252736 +The maximum resident set size (KB) = 585528 Test 071 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2934,14 +2934,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 329.241642 -The maximum resident set size (KB) = 584988 +The total amount of wall time = 328.788606 +The maximum resident set size (KB) = 582508 Test 072 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2952,26 +2952,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.433592 -The maximum resident set size (KB) = 551588 +The total amount of wall time = 181.202505 +The maximum resident set size (KB) = 554372 Test 073 control_ras_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.355051 -The maximum resident set size (KB) = 334408 +The total amount of wall time = 116.915801 +The maximum resident set size (KB) = 329848 Test 074 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.647565 -The maximum resident set size (KB) = 1501068 +The total amount of wall time = 164.983646 +The maximum resident set size (KB) = 1491244 Test 075 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.917683 -The maximum resident set size (KB) = 870180 +The total amount of wall time = 269.915339 +The maximum resident set size (KB) = 867928 Test 076 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3070,348 +3070,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.584540 -The maximum resident set size (KB) = 678372 +The total amount of wall time = 157.967291 +The maximum resident set size (KB) = 676068 Test 077 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.739432 -The maximum resident set size (KB) = 678968 +The total amount of wall time = 156.147171 +The maximum resident set size (KB) = 683868 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.900227 -The maximum resident set size (KB) = 686088 +The total amount of wall time = 177.971848 +The maximum resident set size (KB) = 685788 Test 079 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.404129 -The maximum resident set size (KB) = 686028 +The total amount of wall time = 159.521068 +The maximum resident set size (KB) = 686944 Test 080 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.886068 -The maximum resident set size (KB) = 717028 +The total amount of wall time = 248.320919 +The maximum resident set size (KB) = 717272 Test 081 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 245.712465 -The maximum resident set size (KB) = 723136 +The total amount of wall time = 244.869885 +The maximum resident set size (KB) = 721292 Test 082 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.347094 -The maximum resident set size (KB) = 696432 +The total amount of wall time = 160.586312 +The maximum resident set size (KB) = 699088 Test 083 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.403723 -The maximum resident set size (KB) = 739760 +The total amount of wall time = 161.138861 +The maximum resident set size (KB) = 738264 Test 084 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.271098 -The maximum resident set size (KB) = 1512556 +The total amount of wall time = 178.651381 +The maximum resident set size (KB) = 1505168 Test 085 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1040.868224 -The maximum resident set size (KB) = 896416 +The total amount of wall time = 1041.152192 +The maximum resident set size (KB) = 897408 Test 086 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.084862 -The maximum resident set size (KB) = 1060672 +The total amount of wall time = 295.228069 +The maximum resident set size (KB) = 1062876 Test 087 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.411725 -The maximum resident set size (KB) = 1057404 +The total amount of wall time = 287.246524 +The maximum resident set size (KB) = 1057988 Test 088 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.922320 -The maximum resident set size (KB) = 1056924 +The total amount of wall time = 294.775719 +The maximum resident set size (KB) = 1059668 Test 089 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.120220 -The maximum resident set size (KB) = 1139908 +The total amount of wall time = 305.346865 +The maximum resident set size (KB) = 1145520 Test 090 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.841569 -The maximum resident set size (KB) = 1056904 +The total amount of wall time = 301.538925 +The maximum resident set size (KB) = 1058564 Test 091 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.616143 -The maximum resident set size (KB) = 1061408 +The total amount of wall time = 301.366920 +The maximum resident set size (KB) = 1058504 Test 092 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.078177 -The maximum resident set size (KB) = 1059436 +The total amount of wall time = 298.979786 +The maximum resident set size (KB) = 1061668 Test 093 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.472162 -The maximum resident set size (KB) = 1066880 +The total amount of wall time = 294.658548 +The maximum resident set size (KB) = 1059100 Test 094 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.490761 -The maximum resident set size (KB) = 1057344 +The total amount of wall time = 289.126914 +The maximum resident set size (KB) = 1059204 Test 095 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.493681 -The maximum resident set size (KB) = 1058408 +The total amount of wall time = 296.185631 +The maximum resident set size (KB) = 1058352 Test 096 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.739533 -The maximum resident set size (KB) = 1053996 +The total amount of wall time = 483.089667 +The maximum resident set size (KB) = 1056852 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.861652 -The maximum resident set size (KB) = 1056344 +The total amount of wall time = 289.952438 +The maximum resident set size (KB) = 1058576 Test 098 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 352.402695 -The maximum resident set size (KB) = 1059968 +The total amount of wall time = 351.470415 +The maximum resident set size (KB) = 1063672 Test 099 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.806670 -The maximum resident set size (KB) = 1057132 +The total amount of wall time = 294.835741 +The maximum resident set size (KB) = 1062376 Test 100 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.520360 -The maximum resident set size (KB) = 360668 +The total amount of wall time = 297.741897 +The maximum resident set size (KB) = 360548 Test 101 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 220.704103 -The maximum resident set size (KB) = 905044 +The total amount of wall time = 220.615134 +The maximum resident set size (KB) = 901136 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,14 +3476,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.034873 -The maximum resident set size (KB) = 778800 +The total amount of wall time = 332.446877 +The maximum resident set size (KB) = 781104 Test 103 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3530,14 +3530,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.391870 -The maximum resident set size (KB) = 773652 +The total amount of wall time = 175.307648 +The maximum resident set size (KB) = 773400 Test 104 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 175.046884 -The maximum resident set size (KB) = 790508 +The total amount of wall time = 175.016999 +The maximum resident set size (KB) = 789016 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.418068 -The maximum resident set size (KB) = 843224 +The total amount of wall time = 301.671881 +The maximum resident set size (KB) = 835636 Test 106 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.291529 -The maximum resident set size (KB) = 833072 +The total amount of wall time = 156.107852 +The maximum resident set size (KB) = 824824 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.415479 -The maximum resident set size (KB) = 775544 +The total amount of wall time = 181.628925 +The maximum resident set size (KB) = 780676 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3792,42 +3792,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.253253 -The maximum resident set size (KB) = 707232 +The total amount of wall time = 245.977866 +The maximum resident set size (KB) = 709952 Test 109 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.652706 -The maximum resident set size (KB) = 667404 +The total amount of wall time = 91.329543 +The maximum resident set size (KB) = 670416 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.054430 -The maximum resident set size (KB) = 638796 +The total amount of wall time = 92.954174 +The maximum resident set size (KB) = 640540 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3843,40 +3843,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.257255 -The maximum resident set size (KB) = 1061200 +The total amount of wall time = 114.120104 +The maximum resident set size (KB) = 1063436 Test 112 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.343489 -The maximum resident set size (KB) = 1073948 +The total amount of wall time = 58.043088 +The maximum resident set size (KB) = 1066788 Test 113 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.133160 -The maximum resident set size (KB) = 959392 +The total amount of wall time = 69.535510 +The maximum resident set size (KB) = 959972 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3923,123 +3923,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.381999 -The maximum resident set size (KB) = 811220 +The total amount of wall time = 227.240846 +The maximum resident set size (KB) = 811492 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.390336 -The maximum resident set size (KB) = 946736 +The total amount of wall time = 288.287825 +The maximum resident set size (KB) = 941596 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 279.652947 -The maximum resident set size (KB) = 942552 +The total amount of wall time = 280.864369 +The maximum resident set size (KB) = 944180 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 884.577051 -The maximum resident set size (KB) = 1090116 +The total amount of wall time = 877.773590 +The maximum resident set size (KB) = 1093440 Test 118 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 509.079543 -The maximum resident set size (KB) = 1098420 +The total amount of wall time = 501.386798 +The maximum resident set size (KB) = 1104224 Test 119 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 885.199674 -The maximum resident set size (KB) = 1167224 +The total amount of wall time = 876.550509 +The maximum resident set size (KB) = 1158752 Test 120 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.407331 -The maximum resident set size (KB) = 962212 +The total amount of wall time = 291.120142 +The maximum resident set size (KB) = 958124 Test 121 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 245.564792 -The maximum resident set size (KB) = 1124384 +The total amount of wall time = 245.467301 +The maximum resident set size (KB) = 1122536 Test 122 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 276.088775 -The maximum resident set size (KB) = 1482748 +The total amount of wall time = 278.333287 +The maximum resident set size (KB) = 1481100 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4048,14 +4048,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 374.666118 -The maximum resident set size (KB) = 1107144 +The total amount of wall time = 374.677907 +The maximum resident set size (KB) = 1102124 Test 124 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 692.145563 -The maximum resident set size (KB) = 1199124 +The total amount of wall time = 692.662563 +The maximum resident set size (KB) = 1195140 Test 125 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 881.239240 -The maximum resident set size (KB) = 1167700 +The total amount of wall time = 883.029973 +The maximum resident set size (KB) = 1165468 Test 126 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4111,14 +4111,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 303.626550 -The maximum resident set size (KB) = 542576 +The total amount of wall time = 304.323036 +The maximum resident set size (KB) = 540740 Test 127 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4140,14 +4140,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 322.189147 -The maximum resident set size (KB) = 388168 +The total amount of wall time = 320.433145 +The maximum resident set size (KB) = 390504 Test 128 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 368.670190 -The maximum resident set size (KB) = 549432 +The total amount of wall time = 367.425073 +The maximum resident set size (KB) = 548352 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4210,14 +4210,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 159.551704 -The maximum resident set size (KB) = 307400 +The total amount of wall time = 158.688657 +The maximum resident set size (KB) = 308852 Test 130 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4264,14 +4264,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 165.595593 -The maximum resident set size (KB) = 294304 +The total amount of wall time = 166.683312 +The maximum resident set size (KB) = 299136 Test 131 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 453.495454 -The maximum resident set size (KB) = 381044 +The total amount of wall time = 452.361626 +The maximum resident set size (KB) = 380980 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4442,14 +4442,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 493.248075 -The maximum resident set size (KB) = 386488 +The total amount of wall time = 491.592073 +The maximum resident set size (KB) = 390556 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,14 +4458,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 203.022724 -The maximum resident set size (KB) = 556304 +The total amount of wall time = 203.095306 +The maximum resident set size (KB) = 550880 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4487,14 +4487,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 189.304254 -The maximum resident set size (KB) = 554836 +The total amount of wall time = 189.711196 +The maximum resident set size (KB) = 551492 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4516,14 +4516,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.598697 -The maximum resident set size (KB) = 425516 +The total amount of wall time = 210.652709 +The maximum resident set size (KB) = 422620 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4532,42 +4532,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 244.280410 -The maximum resident set size (KB) = 616936 +The total amount of wall time = 245.834075 +The maximum resident set size (KB) = 620680 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 81.055754 -The maximum resident set size (KB) = 335540 +The total amount of wall time = 81.448165 +The maximum resident set size (KB) = 328408 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 795.729363 -The maximum resident set size (KB) = 628568 +The total amount of wall time = 797.028483 +The maximum resident set size (KB) = 609008 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 495.529671 -The maximum resident set size (KB) = 662480 +The total amount of wall time = 497.686262 +The maximum resident set size (KB) = 662320 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 343.399984 -The maximum resident set size (KB) = 1085932 +The total amount of wall time = 344.363410 +The maximum resident set size (KB) = 1131384 Test 141 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4608,131 +4608,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 347.438559 -The maximum resident set size (KB) = 1072920 +The total amount of wall time = 346.780469 +The maximum resident set size (KB) = 1068516 Test 142 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 947.577297 -The maximum resident set size (KB) = 823284 +The total amount of wall time = 943.663013 +The maximum resident set size (KB) = 886444 Test 143 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.364494 -The maximum resident set size (KB) = 727812 +The total amount of wall time = 143.658771 +The maximum resident set size (KB) = 739384 Test 144 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_restart_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 91.003430 -The maximum resident set size (KB) = 728596 +The total amount of wall time = 89.357270 +The maximum resident set size (KB) = 727316 Test 145 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.450087 -The maximum resident set size (KB) = 622556 +The total amount of wall time = 135.164228 +The maximum resident set size (KB) = 617516 Test 146 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.733819 -The maximum resident set size (KB) = 620020 +The total amount of wall time = 136.961539 +The maximum resident set size (KB) = 617800 Test 147 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.666965 -The maximum resident set size (KB) = 619300 +The total amount of wall time = 140.103102 +The maximum resident set size (KB) = 621480 Test 148 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.338465 -The maximum resident set size (KB) = 741840 +The total amount of wall time = 143.727401 +The maximum resident set size (KB) = 740640 Test 149 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.103585 -The maximum resident set size (KB) = 739144 +The total amount of wall time = 143.845291 +The maximum resident set size (KB) = 740776 Test 150 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.231056 -The maximum resident set size (KB) = 619332 +The total amount of wall time = 134.590652 +The maximum resident set size (KB) = 622360 Test 151 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4741,14 +4741,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.447010 -The maximum resident set size (KB) = 583304 +The total amount of wall time = 432.043060 +The maximum resident set size (KB) = 576296 Test 152 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4757,64 +4757,64 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 425.008280 -The maximum resident set size (KB) = 570560 +The total amount of wall time = 429.762551 +The maximum resident set size (KB) = 569952 Test 153 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.746362 -The maximum resident set size (KB) = 739348 +The total amount of wall time = 142.663368 +The maximum resident set size (KB) = 741624 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 257.913826 -The maximum resident set size (KB) = 1984908 +The total amount of wall time = 256.305451 +The maximum resident set size (KB) = 1984112 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 258.311550 -The maximum resident set size (KB) = 1987712 +The total amount of wall time = 258.037676 +The maximum resident set size (KB) = 1986620 Test 156 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_cfsr_faster_intel Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.685911 -The maximum resident set size (KB) = 740180 +The total amount of wall time = 143.909957 +The maximum resident set size (KB) = 738600 Test 157 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_lnd_gswp3_intel Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4823,14 +4823,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.676159 -The maximum resident set size (KB) = 229192 +The total amount of wall time = 22.260923 +The maximum resident set size (KB) = 224780 Test 158 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_lnd_gswp3_rst_intel Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4839,14 +4839,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.363988 -The maximum resident set size (KB) = 223640 +The total amount of wall time = 26.569777 +The maximum resident set size (KB) = 221264 Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_atmlnd_sbs_intel Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4931,14 +4931,14 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 228.992957 -The maximum resident set size (KB) = 1552388 +The total amount of wall time = 230.052451 +The maximum resident set size (KB) = 1550240 Test 160 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmwav_control_noaero_p8_intel Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 101.221474 -The maximum resident set size (KB) = 1529736 +The total amount of wall time = 102.657160 +The maximum resident set size (KB) = 1533480 Test 161 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_atmwav_intel Checking test 162 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.592697 -The maximum resident set size (KB) = 543200 +The total amount of wall time = 89.414113 +The maximum resident set size (KB) = 547768 Test 162 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_intel Checking test 163 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 242.306585 -The maximum resident set size (KB) = 2833288 +The total amount of wall time = 243.674149 +The maximum resident set size (KB) = 2830684 Test 163 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_rad_intel Checking test 164 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5134,14 +5134,14 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 281.804108 -The maximum resident set size (KB) = 2896760 +The total amount of wall time = 282.602331 +The maximum resident set size (KB) = 2893960 Test 164 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_rad_micro_intel Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5185,14 +5185,14 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.196183 -The maximum resident set size (KB) = 2905932 +The total amount of wall time = 286.862945 +The maximum resident set size (KB) = 2897676 Test 165 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_atmaq_intel Checking test 166 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5208,14 +5208,14 @@ Checking test 166 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 663.453368 -The maximum resident set size (KB) = 5325400 +The total amount of wall time = 661.257196 +The maximum resident set size (KB) = 5323600 Test 166 regional_atmaq_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_107070/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_atmaq_debug_intel Checking test 167 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5229,12 +5229,12 @@ Checking test 167 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1289.313810 -The maximum resident set size (KB) = 4828552 +The total amount of wall time = 1291.562449 +The maximum resident set size (KB) = 4830832 Test 167 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon Sep 25 19:35:49 UTC 2023 -Elapsed time: 01h:56m:36s. Have a nice day! +Thu Sep 28 14:40:28 UTC 2023 +Elapsed time: 01h:35m:13s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index aa14e74612..07921523a0 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Sun 24 Sep 2023 10:25:33 AM EDT +Thu 28 Sep 2023 09:06:43 AM EDT Start Regression test -Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 +Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 726 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 772 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 700 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 745 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 694 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 203 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1005 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 730 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 823 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 850 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 881 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 304 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1516 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 898 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 298 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1096 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atmaero_intel elapsed time 782 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 705 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 254 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 865 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 749 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 835 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 677 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 292 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 719 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 298 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 815 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 763 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 913 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 649 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 851 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 899 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1380 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 900 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 308 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 855 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.274310 - 0: The maximum resident set size (KB) = 1568720 + 0: The total amount of wall time = 312.586917 + 0: The maximum resident set size (KB) = 1568560 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.355757 - 0: The maximum resident set size (KB) = 1467024 + 0: The total amount of wall time = 225.967874 + 0: The maximum resident set size (KB) = 1467416 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.414975 - 0: The maximum resident set size (KB) = 1602656 + 0: The total amount of wall time = 359.087993 + 0: The maximum resident set size (KB) = 1602768 Test 003 cpld_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.103339 - 0: The maximum resident set size (KB) = 1473084 + 0: The total amount of wall time = 199.728551 + 0: The maximum resident set size (KB) = 1472968 Test 004 cpld_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.801757 - 0: The maximum resident set size (KB) = 1613316 + 0: The total amount of wall time = 358.133590 + 0: The maximum resident set size (KB) = 1613164 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.469774 - 0: The maximum resident set size (KB) = 1307728 + 0: The total amount of wall time = 202.614424 + 0: The maximum resident set size (KB) = 1308048 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_2threads_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.624486 - 0: The maximum resident set size (KB) = 1828048 + 0: The total amount of wall time = 342.977737 + 0: The maximum resident set size (KB) = 1827608 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_decomp_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.310114 - 0: The maximum resident set size (KB) = 1599228 + 0: The total amount of wall time = 356.147982 + 0: The maximum resident set size (KB) = 1599092 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_mpi_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.523642 - 0: The maximum resident set size (KB) = 1559320 + 0: The total amount of wall time = 293.536788 + 0: The maximum resident set size (KB) = 1559208 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 620.825018 - 0: The maximum resident set size (KB) = 3081764 + 0: The total amount of wall time = 622.745394 + 0: The maximum resident set size (KB) = 3067108 Test 010 cpld_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_restart_bmark_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.520727 - 0: The maximum resident set size (KB) = 2999316 + 0: The total amount of wall time = 373.446060 + 0: The maximum resident set size (KB) = 3000736 Test 011 cpld_restart_bmark_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.330676 - 0: The maximum resident set size (KB) = 1485468 + 0: The total amount of wall time = 265.356043 + 0: The maximum resident set size (KB) = 1485332 Test 012 cpld_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_nowave_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.340688 - 0: The maximum resident set size (KB) = 1521264 + 0: The total amount of wall time = 273.251573 + 0: The maximum resident set size (KB) = 1520748 Test 013 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.448801 - 0: The maximum resident set size (KB) = 1604120 + 0: The total amount of wall time = 531.440197 + 0: The maximum resident set size (KB) = 1603840 Test 014 cpld_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.568695 - 0: The maximum resident set size (KB) = 1505048 + 0: The total amount of wall time = 362.013478 + 0: The maximum resident set size (KB) = 1505152 Test 015 cpld_debug_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.868471 - 0: The maximum resident set size (KB) = 1522104 + 0: The total amount of wall time = 273.895111 + 0: The maximum resident set size (KB) = 1522200 Test 016 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 596.068393 - 0: The maximum resident set size (KB) = 2591340 + 0: The total amount of wall time = 598.703254 + 0: The maximum resident set size (KB) = 2591088 Test 017 cpld_control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.080707 - 0: The maximum resident set size (KB) = 1602368 + 0: The total amount of wall time = 346.337163 + 0: The maximum resident set size (KB) = 1602872 Test 018 cpld_control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_flake_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.535786 - 0: The maximum resident set size (KB) = 495912 + 0: The total amount of wall time = 205.637763 + 0: The maximum resident set size (KB) = 496052 Test 019 control_flake_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,21 +1250,21 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 136.594872 - 0: The maximum resident set size (KB) = 448032 + 0: The total amount of wall time = 135.197491 + 0: The maximum resident set size (KB) = 448052 Test 020 control_CubedSphereGrid_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1272,14 +1272,14 @@ Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.644691 - 0: The maximum resident set size (KB) = 451828 + 0: The total amount of wall time = 153.748293 + 0: The maximum resident set size (KB) = 451908 Test 021 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_latlon_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.030164 + 0: The total amount of wall time = 138.579175 0: The maximum resident set size (KB) = 448060 Test 022 control_latlon_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.882217 - 0: The maximum resident set size (KB) = 448132 + 0: The total amount of wall time = 143.569873 + 0: The maximum resident set size (KB) = 448304 Test 023 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c48_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 419.235406 +0: The total amount of wall time = 418.986081 0: The maximum resident set size (KB) = 651616 Test 024 control_c48_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c192_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 566.012735 - 0: The maximum resident set size (KB) = 554384 + 0: The total amount of wall time = 567.007144 + 0: The maximum resident set size (KB) = 554132 Test 025 control_c192_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c384_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1095.093998 - 0: The maximum resident set size (KB) = 946308 + 0: The total amount of wall time = 1080.122217 + 0: The maximum resident set size (KB) = 946192 Test 026 control_c384_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_c384gdas_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 896.875297 - 0: The maximum resident set size (KB) = 1073756 + 0: The total amount of wall time = 898.525066 + 0: The maximum resident set size (KB) = 1073492 Test 027 control_c384gdas_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.512288 - 0: The maximum resident set size (KB) = 454572 + 0: The total amount of wall time = 91.684779 + 0: The maximum resident set size (KB) = 454788 Test 028 control_stochy_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.941172 - 0: The maximum resident set size (KB) = 268980 + 0: The total amount of wall time = 50.004183 + 0: The maximum resident set size (KB) = 269148 Test 029 control_stochy_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.649862 - 0: The maximum resident set size (KB) = 452820 + 0: The total amount of wall time = 84.877265 + 0: The maximum resident set size (KB) = 452748 Test 030 control_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_iovr4_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.281509 - 0: The maximum resident set size (KB) = 448260 + 0: The total amount of wall time = 140.406684 + 0: The maximum resident set size (KB) = 448212 Test 031 control_iovr4_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_iovr5_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.007006 - 0: The maximum resident set size (KB) = 447944 + 0: The total amount of wall time = 140.596016 + 0: The maximum resident set size (KB) = 448180 Test 032 control_iovr5_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.384512 - 0: The maximum resident set size (KB) = 1419900 + 0: The total amount of wall time = 170.620896 + 0: The maximum resident set size (KB) = 1419792 Test 033 control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_restart_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.543852 - 0: The maximum resident set size (KB) = 623388 + 0: The total amount of wall time = 89.268465 + 0: The maximum resident set size (KB) = 623620 Test 034 control_restart_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.615813 - 0: The maximum resident set size (KB) = 1428708 + 0: The total amount of wall time = 170.765153 + 0: The maximum resident set size (KB) = 1428788 Test 035 control_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_restart_qr_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.186080 - 0: The maximum resident set size (KB) = 597220 + 0: The total amount of wall time = 90.788379 + 0: The maximum resident set size (KB) = 597224 Test 036 control_restart_qr_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_decomp_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.535883 - 0: The maximum resident set size (KB) = 1413600 + 0: The total amount of wall time = 176.818662 + 0: The maximum resident set size (KB) = 1413712 Test 037 control_decomp_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_2threads_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.818230 - 0: The maximum resident set size (KB) = 1499760 + 0: The total amount of wall time = 158.902775 + 0: The maximum resident set size (KB) = 1500668 Test 038 control_2threads_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.888788 - 0: The maximum resident set size (KB) = 1420100 + 0: The total amount of wall time = 318.069974 + 0: The maximum resident set size (KB) = 1420040 Test 039 control_p8_lndp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.647634 - 0: The maximum resident set size (KB) = 1473252 + 0: The total amount of wall time = 233.222369 + 0: The maximum resident set size (KB) = 1473336 Test 040 control_p8_rrtmgp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.922451 - 0: The maximum resident set size (KB) = 1424860 + 0: The total amount of wall time = 173.398091 + 0: The maximum resident set size (KB) = 1424912 Test 041 control_p8_mynn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/merra2_thompson_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.704757 - 0: The maximum resident set size (KB) = 1425380 + 0: The total amount of wall time = 195.205371 + 0: The maximum resident set size (KB) = 1433524 Test 042 merra2_thompson_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.408899 - 0: The maximum resident set size (KB) = 805752 + 0: The total amount of wall time = 314.621975 + 0: The maximum resident set size (KB) = 805772 Test 043 regional_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.019898 - 0: The maximum resident set size (KB) = 802324 + 0: The total amount of wall time = 159.696264 + 0: The maximum resident set size (KB) = 801888 Test 044 regional_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.828578 - 0: The maximum resident set size (KB) = 805764 + 0: The total amount of wall time = 314.858259 + 0: The maximum resident set size (KB) = 805244 Test 045 regional_control_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_restart_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.294560 - 0: The maximum resident set size (KB) = 802908 + 0: The total amount of wall time = 160.813476 + 0: The maximum resident set size (KB) = 802980 Test 046 regional_restart_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.056587 - 0: The maximum resident set size (KB) = 803668 + 0: The total amount of wall time = 333.285772 + 0: The maximum resident set size (KB) = 803400 Test 047 regional_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.302922 - 0: The maximum resident set size (KB) = 809768 + 0: The total amount of wall time = 181.384153 + 0: The maximum resident set size (KB) = 809932 Test 048 regional_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_noquilt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2137,28 +2137,28 @@ Checking test 049 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 312.524472 - 0: The maximum resident set size (KB) = 1077464 + 0: The total amount of wall time = 312.420489 + 0: The maximum resident set size (KB) = 1078896 Test 049 regional_noquilt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 313.387260 - 0: The maximum resident set size (KB) = 801060 + 0: The total amount of wall time = 318.404332 + 0: The maximum resident set size (KB) = 801056 Test 050 regional_netcdf_parallel_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_2dwrtdecomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.640985 - 0: The maximum resident set size (KB) = 809152 + 0: The total amount of wall time = 317.603669 + 0: The maximum resident set size (KB) = 809120 Test 051 regional_2dwrtdecomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_wofs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 403.265372 - 0: The maximum resident set size (KB) = 549776 + 0: The total amount of wall time = 402.316579 + 0: The maximum resident set size (KB) = 550092 Test 052 regional_wofs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.194550 - 0: The maximum resident set size (KB) = 833672 + 0: The total amount of wall time = 449.472250 + 0: The maximum resident set size (KB) = 833560 Test 053 rap_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.308113 - 0: The maximum resident set size (KB) = 920796 + 0: The total amount of wall time = 249.880565 + 0: The maximum resident set size (KB) = 920412 Test 054 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.659902 - 0: The maximum resident set size (KB) = 832576 + 0: The total amount of wall time = 465.119993 + 0: The maximum resident set size (KB) = 824332 Test 055 rap_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.193397 - 0: The maximum resident set size (KB) = 911320 + 0: The total amount of wall time = 426.638905 + 0: The maximum resident set size (KB) = 911592 Test 056 rap_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.676883 - 0: The maximum resident set size (KB) = 729156 + 0: The total amount of wall time = 227.651088 + 0: The maximum resident set size (KB) = 729320 Test 057 rap_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.025169 - 0: The maximum resident set size (KB) = 833480 + 0: The total amount of wall time = 449.491466 + 0: The maximum resident set size (KB) = 833428 Test 058 rap_sfcdiff_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.879217 - 0: The maximum resident set size (KB) = 832320 + 0: The total amount of wall time = 465.073086 + 0: The maximum resident set size (KB) = 832312 Test 059 rap_sfcdiff_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.083671 - 0: The maximum resident set size (KB) = 738476 + 0: The total amount of wall time = 335.401047 + 0: The maximum resident set size (KB) = 738188 Test 060 rap_sfcdiff_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.545079 - 0: The maximum resident set size (KB) = 830876 + 0: The total amount of wall time = 431.089248 + 0: The maximum resident set size (KB) = 830808 Test 061 hrrr_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.377205 - 0: The maximum resident set size (KB) = 838328 + 0: The total amount of wall time = 430.346180 + 0: The maximum resident set size (KB) = 834412 Test 062 hrrr_control_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_decomp_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.875343 - 0: The maximum resident set size (KB) = 830532 + 0: The total amount of wall time = 445.877978 + 0: The maximum resident set size (KB) = 830556 Test 063 hrrr_control_decomp_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.387315 - 0: The maximum resident set size (KB) = 904280 + 0: The total amount of wall time = 397.792638 + 0: The maximum resident set size (KB) = 908972 Test 064 hrrr_control_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.621999 - 0: The maximum resident set size (KB) = 685960 + 0: The total amount of wall time = 321.352237 + 0: The maximum resident set size (KB) = 685816 Test 065 hrrr_control_restart_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.381036 - 0: The maximum resident set size (KB) = 600872 + 0: The total amount of wall time = 324.734128 + 0: The maximum resident set size (KB) = 600892 Test 066 hrrr_control_restart_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.362837 - 0: The maximum resident set size (KB) = 830480 + 0: The total amount of wall time = 440.732714 + 0: The maximum resident set size (KB) = 822392 Test 067 rrfs_v1beta_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 546.851266 - 0: The maximum resident set size (KB) = 503980 + 0: The total amount of wall time = 547.888107 + 0: The maximum resident set size (KB) = 503972 Test 068 rrfs_v1nssl_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.783742 - 0: The maximum resident set size (KB) = 499576 + 0: The total amount of wall time = 529.552647 + 0: The maximum resident set size (KB) = 499732 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_gf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_gf_intel Checking test 070 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 070 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.407510 - 0: The maximum resident set size (KB) = 824900 + 0: The total amount of wall time = 450.399779 + 0: The maximum resident set size (KB) = 832896 Test 070 hrrr_gf_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_c3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_c3_intel Checking test 071 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3017,14 +3017,14 @@ Checking test 071 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.179409 - 0: The maximum resident set size (KB) = 832964 + 0: The total amount of wall time = 450.729820 + 0: The maximum resident set size (KB) = 832932 Test 071 hrrr_c3_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmgt_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmgt_intel Checking test 072 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,14 +3035,14 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.247987 - 0: The maximum resident set size (KB) = 514224 + 0: The total amount of wall time = 361.979071 + 0: The maximum resident set size (KB) = 514144 Test 072 control_csawmgt_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_ras_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_ras_intel Checking test 073 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,26 +3053,26 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.097538 - 0: The maximum resident set size (KB) = 482716 + 0: The total amount of wall time = 194.362649 + 0: The maximum resident set size (KB) = 482756 Test 073 control_ras_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wam_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wam_intel Checking test 074 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 121.265116 - 0: The maximum resident set size (KB) = 258032 + 0: The total amount of wall time = 120.627146 + 0: The maximum resident set size (KB) = 258048 Test 074 control_wam_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_faster_intel Checking test 075 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3119,14 +3119,14 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.097399 - 0: The maximum resident set size (KB) = 1419700 + 0: The total amount of wall time = 160.253572 + 0: The maximum resident set size (KB) = 1419668 Test 075 control_p8_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_control_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_faster_intel Checking test 076 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3137,14 +3137,14 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.326063 - 0: The maximum resident set size (KB) = 805600 + 0: The total amount of wall time = 294.111091 + 0: The maximum resident set size (KB) = 805120 Test 076 regional_control_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_debug_intel Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3171,348 +3171,348 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.265476 - 0: The maximum resident set size (KB) = 613168 + 0: The total amount of wall time = 151.350039 + 0: The maximum resident set size (KB) = 612988 Test 077 control_CubedSphereGrid_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wrtGauss_netcdf_parallel_debug_intel Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.483921 - 0: The maximum resident set size (KB) = 612592 + 0: The total amount of wall time = 155.919529 + 0: The maximum resident set size (KB) = 612644 Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_debug_intel Checking test 079 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.461014 - 0: The maximum resident set size (KB) = 616920 + 0: The total amount of wall time = 170.351472 + 0: The maximum resident set size (KB) = 616872 Test 079 control_stochy_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_lndp_debug_intel Checking test 080 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.369174 - 0: The maximum resident set size (KB) = 615544 + 0: The total amount of wall time = 152.830905 + 0: The maximum resident set size (KB) = 615528 Test 080 control_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmg_debug_intel Checking test 081 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.386240 - 0: The maximum resident set size (KB) = 653208 + 0: The total amount of wall time = 241.952416 + 0: The maximum resident set size (KB) = 653020 Test 081 control_csawmg_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmgt_debug_intel Checking test 082 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.581325 - 0: The maximum resident set size (KB) = 653344 + 0: The total amount of wall time = 238.526500 + 0: The maximum resident set size (KB) = 653332 Test 082 control_csawmgt_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_ras_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_ras_debug_intel Checking test 083 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.519976 - 0: The maximum resident set size (KB) = 625524 + 0: The total amount of wall time = 154.380942 + 0: The maximum resident set size (KB) = 625452 Test 083 control_ras_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_diag_debug_intel Checking test 084 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.472510 - 0: The maximum resident set size (KB) = 667964 + 0: The total amount of wall time = 156.327494 + 0: The maximum resident set size (KB) = 667860 Test 084 control_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_debug_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_debug_p8_intel Checking test 085 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.393261 - 0: The maximum resident set size (KB) = 1436804 + 0: The total amount of wall time = 171.550211 + 0: The maximum resident set size (KB) = 1436992 Test 085 control_debug_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_debug_intel Checking test 086 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1033.227130 - 0: The maximum resident set size (KB) = 829924 + 0: The total amount of wall time = 1030.152970 + 0: The maximum resident set size (KB) = 829912 Test 086 regional_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_debug_intel Checking test 087 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.719541 - 0: The maximum resident set size (KB) = 997556 + 0: The total amount of wall time = 280.690685 + 0: The maximum resident set size (KB) = 997392 Test 087 rap_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_debug_intel Checking test 088 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.821798 - 0: The maximum resident set size (KB) = 994928 + 0: The total amount of wall time = 274.093434 + 0: The maximum resident set size (KB) = 990576 Test 088 hrrr_control_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_unified_drag_suite_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.111607 - 0: The maximum resident set size (KB) = 997540 + 0: The total amount of wall time = 280.752952 + 0: The maximum resident set size (KB) = 993312 Test 089 rap_unified_drag_suite_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.492893 - 0: The maximum resident set size (KB) = 1071516 + 0: The total amount of wall time = 294.584741 + 0: The maximum resident set size (KB) = 1071484 Test 090 rap_diag_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.570099 - 0: The maximum resident set size (KB) = 997212 + 0: The total amount of wall time = 286.463891 + 0: The maximum resident set size (KB) = 992984 Test 091 rap_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_unified_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.905483 - 0: The maximum resident set size (KB) = 997668 + 0: The total amount of wall time = 287.151821 + 0: The maximum resident set size (KB) = 997472 Test 092 rap_unified_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.370488 - 0: The maximum resident set size (KB) = 990056 + 0: The total amount of wall time = 282.953708 + 0: The maximum resident set size (KB) = 989984 Test 093 rap_lndp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.719055 - 0: The maximum resident set size (KB) = 997412 + 0: The total amount of wall time = 280.933864 + 0: The maximum resident set size (KB) = 997344 Test 094 rap_progcld_thompson_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.923037 - 0: The maximum resident set size (KB) = 997264 + 0: The total amount of wall time = 275.831685 + 0: The maximum resident set size (KB) = 997064 Test 095 rap_noah_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.812036 - 0: The maximum resident set size (KB) = 997356 + 0: The total amount of wall time = 281.025645 + 0: The maximum resident set size (KB) = 997180 Test 096 rap_sfcdiff_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 465.248206 - 0: The maximum resident set size (KB) = 996976 + 0: The total amount of wall time = 465.305332 + 0: The maximum resident set size (KB) = 996996 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.436869 - 0: The maximum resident set size (KB) = 994656 + 0: The total amount of wall time = 276.586270 + 0: The maximum resident set size (KB) = 994600 Test 098 rrfs_v1beta_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.666244 - 0: The maximum resident set size (KB) = 1000148 + 0: The total amount of wall time = 347.240073 + 0: The maximum resident set size (KB) = 999936 Test 099 rap_clm_lake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.835488 - 0: The maximum resident set size (KB) = 997464 + 0: The total amount of wall time = 280.936563 + 0: The maximum resident set size (KB) = 997324 Test 100 rap_flake_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_wam_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 285.737689 - 0: The maximum resident set size (KB) = 288040 + 0: The total amount of wall time = 286.619724 + 0: The maximum resident set size (KB) = 287928 Test 101 control_wam_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3523,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.234997 - 0: The maximum resident set size (KB) = 818760 + 0: The total amount of wall time = 237.947044 + 0: The maximum resident set size (KB) = 819080 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3577,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.071531 - 0: The maximum resident set size (KB) = 710428 + 0: The total amount of wall time = 368.992247 + 0: The maximum resident set size (KB) = 718664 Test 103 rap_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3631,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.514417 - 0: The maximum resident set size (KB) = 715076 + 0: The total amount of wall time = 189.618828 + 0: The maximum resident set size (KB) = 707044 Test 104 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3685,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.328166 - 0: The maximum resident set size (KB) = 720444 + 0: The total amount of wall time = 190.378335 + 0: The maximum resident set size (KB) = 713008 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3739,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.742087 - 0: The maximum resident set size (KB) = 765788 + 0: The total amount of wall time = 346.261888 + 0: The maximum resident set size (KB) = 769668 Test 106 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.756034 - 0: The maximum resident set size (KB) = 767168 + 0: The total amount of wall time = 176.247236 + 0: The maximum resident set size (KB) = 767180 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3847,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.370835 - 0: The maximum resident set size (KB) = 707572 + 0: The total amount of wall time = 195.213155 + 0: The maximum resident set size (KB) = 715736 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,42 +3893,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.145798 - 0: The maximum resident set size (KB) = 632240 + 0: The total amount of wall time = 273.637719 + 0: The maximum resident set size (KB) = 632264 Test 109 rap_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.814484 - 0: The maximum resident set size (KB) = 594308 + 0: The total amount of wall time = 98.797177 + 0: The maximum resident set size (KB) = 594464 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.725907 - 0: The maximum resident set size (KB) = 559712 + 0: The total amount of wall time = 100.754469 + 0: The maximum resident set size (KB) = 560824 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_control_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,40 +3944,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 119.231817 - 0: The maximum resident set size (KB) = 941260 + 0: The total amount of wall time = 119.125825 + 0: The maximum resident set size (KB) = 941028 Test 112 conus13km_control_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.665926 - 0: The maximum resident set size (KB) = 947844 + 0: The total amount of wall time = 45.832138 + 0: The maximum resident set size (KB) = 947904 Test 113 conus13km_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.593665 - 0: The maximum resident set size (KB) = 887308 + 0: The total amount of wall time = 64.635083 + 0: The maximum resident set size (KB) = 887620 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,123 +4024,123 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.996184 - 0: The maximum resident set size (KB) = 729028 + 0: The total amount of wall time = 250.153110 + 0: The maximum resident set size (KB) = 728948 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.274622 - 0: The maximum resident set size (KB) = 873760 + 0: The total amount of wall time = 277.969350 + 0: The maximum resident set size (KB) = 873656 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.914791 - 0: The maximum resident set size (KB) = 872524 + 0: The total amount of wall time = 271.314416 + 0: The maximum resident set size (KB) = 880876 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 867.001168 - 0: The maximum resident set size (KB) = 974532 + 0: The total amount of wall time = 866.374519 + 0: The maximum resident set size (KB) = 974452 Test 118 conus13km_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_debug_2threads_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_debug_2threads_intel Checking test 119 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.214055 - 0: The maximum resident set size (KB) = 981264 + 0: The total amount of wall time = 492.568919 + 0: The maximum resident set size (KB) = 981132 Test 119 conus13km_debug_2threads_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_radar_tten_debug_intel Checking test 120 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 867.434604 + 0: The total amount of wall time = 865.623112 0: The maximum resident set size (KB) = 1042320 Test 120 conus13km_radar_tten_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/rap_control_dyn64_phy32_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn64_phy32_debug_intel Checking test 121 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.889852 - 0: The maximum resident set size (KB) = 884876 + 0: The total amount of wall time = 281.477001 + 0: The maximum resident set size (KB) = 884736 Test 121 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_intel Checking test 122 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 230.558330 - 0: The maximum resident set size (KB) = 1023624 + 0: The total amount of wall time = 230.670283 + 0: The maximum resident set size (KB) = 876392 Test 122 hafs_regional_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_thompson_gfdlsf_intel Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 273.967923 - 0: The maximum resident set size (KB) = 1205700 + 0: The total amount of wall time = 272.413915 + 0: The maximum resident set size (KB) = 1203248 Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_ocn_intel Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,14 +4149,14 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 412.933327 - 0: The maximum resident set size (KB) = 910620 + 0: The total amount of wall time = 412.356602 + 0: The maximum resident set size (KB) = 907528 Test 124 hafs_regional_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_wav_intel Checking test 125 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,14 +4165,14 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 902.724549 - 0: The maximum resident set size (KB) = 931100 + 0: The total amount of wall time = 903.872701 + 0: The maximum resident set size (KB) = 1089352 Test 125 hafs_regional_atm_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_ocn_wav_intel Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4183,14 +4183,14 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1010.852622 - 0: The maximum resident set size (KB) = 962440 + 0: The total amount of wall time = 1016.628770 + 0: The maximum resident set size (KB) = 965504 Test 126 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_1nest_atm_intel Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 333.005080 - 0: The maximum resident set size (KB) = 427796 + 0: The total amount of wall time = 332.596162 + 0: The maximum resident set size (KB) = 427888 Test 127 hafs_regional_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_1nest_atm_qr_intel Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4241,14 +4241,14 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 387.288550 - 0: The maximum resident set size (KB) = 297620 + 0: The total amount of wall time = 381.526582 + 0: The maximum resident set size (KB) = 297988 Test 128 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_telescopic_2nests_atm_intel Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4257,14 +4257,14 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 378.582882 - 0: The maximum resident set size (KB) = 438624 + 0: The total amount of wall time = 380.786152 + 0: The maximum resident set size (KB) = 438472 Test 129 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_1nest_atm_intel Checking test 130 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 151.506787 - 0: The maximum resident set size (KB) = 233884 + 0: The total amount of wall time = 151.950047 + 0: The maximum resident set size (KB) = 233864 Test 130 hafs_global_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_1nest_atm_qr_intel Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 228.591058 - 0: The maximum resident set size (KB) = 214684 + 0: The total amount of wall time = 207.414487 + 0: The maximum resident set size (KB) = 214672 Test 131 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 429.932387 - 0: The maximum resident set size (KB) = 258212 + 0: The total amount of wall time = 425.061083 + 0: The maximum resident set size (KB) = 258444 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_multiple_4nests_atm_qr_intel Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4543,14 +4543,14 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 594.998835 - 0: The maximum resident set size (KB) = 270016 + 0: The total amount of wall time = 577.572210 + 0: The maximum resident set size (KB) = 257944 Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_specified_moving_1nest_atm_intel Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4559,14 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 213.134550 - 0: The maximum resident set size (KB) = 447396 + 0: The total amount of wall time = 213.877773 + 0: The maximum resident set size (KB) = 447508 Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_intel Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4588,14 +4588,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 197.536172 - 0: The maximum resident set size (KB) = 445220 + 0: The total amount of wall time = 197.196712 + 0: The maximum resident set size (KB) = 445028 Test 135 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4617,14 +4617,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 250.893540 - 0: The maximum resident set size (KB) = 328832 + 0: The total amount of wall time = 248.881935 + 0: The maximum resident set size (KB) = 331224 Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4633,42 +4633,42 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 246.169409 - 0: The maximum resident set size (KB) = 475020 + 0: The total amount of wall time = 246.163127 + 0: The maximum resident set size (KB) = 474636 Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_storm_following_1nest_atm_intel Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.158339 - 0: The maximum resident set size (KB) = 254288 + 0: The total amount of wall time = 58.867522 + 0: The maximum resident set size (KB) = 254656 Test 138 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.720325 - 0: The maximum resident set size (KB) = 493960 + 0: The total amount of wall time = 753.843530 + 0: The maximum resident set size (KB) = 493892 Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 635.616073 - 0: The maximum resident set size (KB) = 526428 + 0: The total amount of wall time = 635.086011 + 0: The maximum resident set size (KB) = 524688 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_docn_intel Checking test 141 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4694,14 +4694,14 @@ Checking test 141 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.722207 - 0: The maximum resident set size (KB) = 904416 + 0: The total amount of wall time = 351.916493 + 0: The maximum resident set size (KB) = 904508 Test 141 hafs_regional_docn_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_docn_oisst_intel Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,131 +4709,131 @@ Checking test 142 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.978285 - 0: The maximum resident set size (KB) = 888100 + 0: The total amount of wall time = 353.129824 + 0: The maximum resident set size (KB) = 880168 Test 142 hafs_regional_docn_oisst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_datm_cdeps_intel Checking test 143 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1187.557802 - 0: The maximum resident set size (KB) = 848476 + 0: The total amount of wall time = 1179.958180 + 0: The maximum resident set size (KB) = 800820 Test 143 hafs_regional_datm_cdeps_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_cfsr_intel Checking test 144 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.669139 - 0: The maximum resident set size (KB) = 720028 + 0: The total amount of wall time = 166.051890 + 0: The maximum resident set size (KB) = 731468 Test 144 datm_cdeps_control_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_restart_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_restart_cfsr_intel Checking test 145 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.226583 - 0: The maximum resident set size (KB) = 718964 + 0: The total amount of wall time = 97.373430 + 0: The maximum resident set size (KB) = 718884 Test 145 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_gefs_intel Checking test 146 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.221599 - 0: The maximum resident set size (KB) = 613520 + 0: The total amount of wall time = 157.747987 + 0: The maximum resident set size (KB) = 614216 Test 146 datm_cdeps_control_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_iau_gefs_intel Checking test 147 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.853533 - 0: The maximum resident set size (KB) = 610872 + 0: The total amount of wall time = 156.891001 + 0: The maximum resident set size (KB) = 614992 Test 147 datm_cdeps_iau_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_stochy_gefs_intel Checking test 148 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.992648 - 0: The maximum resident set size (KB) = 611068 + 0: The total amount of wall time = 158.252509 + 0: The maximum resident set size (KB) = 617172 Test 148 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_ciceC_cfsr_intel Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.797615 - 0: The maximum resident set size (KB) = 731440 + 0: The total amount of wall time = 163.642173 + 0: The maximum resident set size (KB) = 731460 Test 149 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_bulk_cfsr_intel Checking test 150 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.101954 - 0: The maximum resident set size (KB) = 719964 + 0: The total amount of wall time = 162.894133 + 0: The maximum resident set size (KB) = 731452 Test 150 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_bulk_gefs_intel Checking test 151 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.129910 - 0: The maximum resident set size (KB) = 613188 + 0: The total amount of wall time = 154.828546 + 0: The maximum resident set size (KB) = 611000 Test 151 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_mx025_cfsr_intel Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4842,14 +4842,14 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 383.036721 - 0: The maximum resident set size (KB) = 512320 + 0: The total amount of wall time = 383.238291 + 0: The maximum resident set size (KB) = 514476 Test 152 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_mx025_gefs_intel Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4858,77 +4858,77 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 380.442597 - 0: The maximum resident set size (KB) = 495268 + 0: The total amount of wall time = 375.329596 + 0: The maximum resident set size (KB) = 497084 Test 153 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_multiple_files_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_multiple_files_cfsr_intel Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.230294 - 0: The maximum resident set size (KB) = 731440 + 0: The total amount of wall time = 165.314894 + 0: The maximum resident set size (KB) = 731356 Test 154 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_3072x1536_cfsr_intel Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.136513 - 0: The maximum resident set size (KB) = 1966896 + 0: The total amount of wall time = 271.151217 + 0: The maximum resident set size (KB) = 1965080 Test 155 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_gfs_intel Checking test 156 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.632228 - 0: The maximum resident set size (KB) = 1963000 + 0: The total amount of wall time = 270.030094 + 0: The maximum resident set size (KB) = 1965692 Test 156 datm_cdeps_gfs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_debug_cfsr_intel Checking test 157 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 370.769955 - 0: The maximum resident set size (KB) = 703140 + 0: The total amount of wall time = 368.410228 + 0: The maximum resident set size (KB) = 714860 Test 157 datm_cdeps_debug_cfsr_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_cfsr_faster_intel Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.040254 - 0: The maximum resident set size (KB) = 731324 + 0: The total amount of wall time = 162.277583 + 0: The maximum resident set size (KB) = 719740 Test 158 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_lnd_gswp3_intel Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4937,14 +4937,14 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.583565 - 0: The maximum resident set size (KB) = 118208 + 0: The total amount of wall time = 6.516944 + 0: The maximum resident set size (KB) = 118324 Test 159 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_lnd_gswp3_rst_intel Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4953,14 +4953,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.420596 - 0: The maximum resident set size (KB) = 116180 + 0: The total amount of wall time = 11.592159 + 0: The maximum resident set size (KB) = 116152 Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_atmlnd_sbs_intel Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5045,14 +5045,14 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 214.402542 - 0: The maximum resident set size (KB) = 1454884 + 0: The total amount of wall time = 214.025669 + 0: The maximum resident set size (KB) = 1454932 Test 161 control_p8_atmlnd_sbs_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmwav_control_noaero_p8_intel Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5095,14 +5095,14 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.029459 - 0: The maximum resident set size (KB) = 1437388 + 0: The total amount of wall time = 92.699035 + 0: The maximum resident set size (KB) = 1437644 Test 162 atmwav_control_noaero_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/control_atmwav_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_atmwav_intel Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5146,14 +5146,14 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.832735 - 0: The maximum resident set size (KB) = 461136 + 0: The total amount of wall time = 88.905817 + 0: The maximum resident set size (KB) = 461024 Test 163 control_atmwav_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_intel Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5197,14 +5197,14 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.909394 - 0: The maximum resident set size (KB) = 1482260 + 0: The total amount of wall time = 235.294450 + 0: The maximum resident set size (KB) = 1482396 Test 164 atmaero_control_p8_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_rad_intel Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5248,14 +5248,14 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.146843 - 0: The maximum resident set size (KB) = 1524708 + 0: The total amount of wall time = 292.026078 + 0: The maximum resident set size (KB) = 1524808 Test 165 atmaero_control_p8_rad_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_rad_micro_intel Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5299,14 +5299,14 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.260213 - 0: The maximum resident set size (KB) = 1532244 + 0: The total amount of wall time = 292.344849 + 0: The maximum resident set size (KB) = 1509728 Test 166 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_atmaq_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_atmaq_intel Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5322,14 +5322,14 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 653.872483 - 0: The maximum resident set size (KB) = 5017296 + 0: The total amount of wall time = 628.880092 + 0: The maximum resident set size (KB) = 5046392 -Test 167 regional_atmaq_intel PASS +Test 167 regional_atmaq_intel PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_26568/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_atmaq_faster_intel Checking test 168 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5345,12 +5345,12 @@ Checking test 168 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 620.283542 - 0: The maximum resident set size (KB) = 5043176 + 0: The total amount of wall time = 643.822762 + 0: The maximum resident set size (KB) = 5045856 Test 168 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun 24 Sep 2023 11:38:59 AM EDT -Elapsed time: 01h:13m:36s. Have a nice day! +Thu 28 Sep 2023 10:19:46 AM EDT +Elapsed time: 01h:13m:11s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 000c352d60..e230f41b2c 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Fri Sep 22 22:02:45 UTC 2023 +Thu Sep 28 05:47:21 UTC 2023 Start Regression test -Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 +Testing UFSWM Hash: 5bec6063795438c3a8bfddee98bf0930b6694e44 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 584 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 170 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 259 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 538 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 544 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 512 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 542 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 544 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 109 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 598 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 650 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 217 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 616 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 233 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 587 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 261 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 529 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 521 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 547 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 580 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 565 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 198 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 605 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 579 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 648 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 588 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 217 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 891 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 645 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 127 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 239 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 965 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 245 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 88 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 660 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 133 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 943 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 91 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.334704 - 0: The maximum resident set size (KB) = 3094508 + 0: The total amount of wall time = 315.780183 + 0: The maximum resident set size (KB) = 3161880 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 219.971733 - 0: The maximum resident set size (KB) = 1669760 + 0: The total amount of wall time = 218.920841 + 0: The maximum resident set size (KB) = 1696156 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.024974 - 0: The maximum resident set size (KB) = 3183380 + 0: The total amount of wall time = 343.697698 + 0: The maximum resident set size (KB) = 3188396 Test 003 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 191.871104 - 0: The maximum resident set size (KB) = 3238412 + 0: The total amount of wall time = 194.583219 + 0: The maximum resident set size (KB) = 3254384 Test 004 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.851907 - 0: The maximum resident set size (KB) = 3214404 + 0: The total amount of wall time = 343.632968 + 0: The maximum resident set size (KB) = 3194044 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.771917 - 0: The maximum resident set size (KB) = 3077400 + 0: The total amount of wall time = 201.776084 + 0: The maximum resident set size (KB) = 3086804 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.878111 - 0: The maximum resident set size (KB) = 3533336 + 0: The total amount of wall time = 325.582410 + 0: The maximum resident set size (KB) = 3532420 Test 007 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.964777 - 0: The maximum resident set size (KB) = 3182128 + 0: The total amount of wall time = 342.249792 + 0: The maximum resident set size (KB) = 3181648 Test 008 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.445413 - 0: The maximum resident set size (KB) = 3034432 + 0: The total amount of wall time = 283.826467 + 0: The maximum resident set size (KB) = 3034984 Test 009 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.820397 - 0: The maximum resident set size (KB) = 3173672 + 0: The total amount of wall time = 346.335382 + 0: The maximum resident set size (KB) = 3183228 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 578.849809 - 0: The maximum resident set size (KB) = 3433400 + 0: The total amount of wall time = 582.675273 + 0: The maximum resident set size (KB) = 3406332 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 368.995715 - 0: The maximum resident set size (KB) = 3612344 + 0: The total amount of wall time = 368.332664 + 0: The maximum resident set size (KB) = 3610876 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 625.019636 - 0: The maximum resident set size (KB) = 4102092 + 0: The total amount of wall time = 628.065279 + 0: The maximum resident set size (KB) = 4067672 Test 013 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 453.180950 - 0: The maximum resident set size (KB) = 4353340 + 0: The total amount of wall time = 446.405235 + 0: The maximum resident set size (KB) = 4361068 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.997033 - 0: The maximum resident set size (KB) = 1714768 + 0: The total amount of wall time = 264.994166 + 0: The maximum resident set size (KB) = 1692272 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.721935 - 0: The maximum resident set size (KB) = 1773072 + 0: The total amount of wall time = 259.940361 + 0: The maximum resident set size (KB) = 1768124 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 507.946158 - 0: The maximum resident set size (KB) = 3238168 + 0: The total amount of wall time = 513.902519 + 0: The maximum resident set size (KB) = 3179124 Test 017 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.070534 - 0: The maximum resident set size (KB) = 1743388 + 0: The total amount of wall time = 356.550617 + 0: The maximum resident set size (KB) = 1746804 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.167715 - 0: The maximum resident set size (KB) = 1754584 + 0: The total amount of wall time = 261.438815 + 0: The maximum resident set size (KB) = 1758520 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 582.082262 - 0: The maximum resident set size (KB) = 2814736 + 0: The total amount of wall time = 586.940149 + 0: The maximum resident set size (KB) = 2819140 Test 020 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.282871 - 0: The maximum resident set size (KB) = 3195820 + 0: The total amount of wall time = 321.172487 + 0: The maximum resident set size (KB) = 3192368 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1238.511083 - 0: The maximum resident set size (KB) = 1768864 + 0: The total amount of wall time = 1199.485999 + 0: The maximum resident set size (KB) = 1751688 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 569.169538 - 0: The maximum resident set size (KB) = 1146440 + 0: The total amount of wall time = 569.429796 + 0: The maximum resident set size (KB) = 1139484 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1086.350600 - 0: The maximum resident set size (KB) = 1665492 + 0: The total amount of wall time = 1091.505542 + 0: The maximum resident set size (KB) = 1667112 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1386.010992 - 0: The maximum resident set size (KB) = 1705244 + 0: The total amount of wall time = 1374.570981 + 0: The maximum resident set size (KB) = 1690268 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.019395 - 0: The maximum resident set size (KB) = 689600 + 0: The total amount of wall time = 187.520782 + 0: The maximum resident set size (KB) = 686120 Test 026 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.579540 - 0: The maximum resident set size (KB) = 640532 + 0: The total amount of wall time = 132.836928 + 0: The maximum resident set size (KB) = 635180 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1735,20 +1735,20 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.449286 - 0: The maximum resident set size (KB) = 649812 + 0: The total amount of wall time = 140.779575 + 0: The maximum resident set size (KB) = 643600 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.288759 - 0: The maximum resident set size (KB) = 641864 + 0: The total amount of wall time = 134.137254 + 0: The maximum resident set size (KB) = 637612 Test 029 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.098057 - 0: The maximum resident set size (KB) = 644108 + 0: The total amount of wall time = 140.422689 + 0: The maximum resident set size (KB) = 640500 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 365.669095 -0: The maximum resident set size (KB) = 840336 +0: The total amount of wall time = 370.114570 +0: The maximum resident set size (KB) = 839324 Test 031 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.738242 - 0: The maximum resident set size (KB) = 765048 + 0: The total amount of wall time = 532.032822 + 0: The maximum resident set size (KB) = 784468 Test 032 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.002761 - 0: The maximum resident set size (KB) = 1380876 + 0: The total amount of wall time = 525.319361 + 0: The maximum resident set size (KB) = 1379528 Test 033 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.462639 - 0: The maximum resident set size (KB) = 1493100 + 0: The total amount of wall time = 454.956346 + 0: The maximum resident set size (KB) = 1490884 Test 034 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.502401 - 0: The maximum resident set size (KB) = 647908 + 0: The total amount of wall time = 90.666605 + 0: The maximum resident set size (KB) = 644080 Test 035 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.459049 - 0: The maximum resident set size (KB) = 553856 + 0: The total amount of wall time = 49.237887 + 0: The maximum resident set size (KB) = 545628 Test 036 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.538737 - 0: The maximum resident set size (KB) = 645140 + 0: The total amount of wall time = 83.336498 + 0: The maximum resident set size (KB) = 638356 Test 037 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.439938 - 0: The maximum resident set size (KB) = 644988 + 0: The total amount of wall time = 136.491929 + 0: The maximum resident set size (KB) = 637268 Test 038 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.331157 - 0: The maximum resident set size (KB) = 642056 + 0: The total amount of wall time = 136.669837 + 0: The maximum resident set size (KB) = 638184 Test 039 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.717787 - 0: The maximum resident set size (KB) = 1607644 + 0: The total amount of wall time = 169.319157 + 0: The maximum resident set size (KB) = 1606064 Test 040 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.883700 - 0: The maximum resident set size (KB) = 934104 + 0: The total amount of wall time = 88.755622 + 0: The maximum resident set size (KB) = 928008 Test 041 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.138388 - 0: The maximum resident set size (KB) = 1615852 + 0: The total amount of wall time = 168.372331 + 0: The maximum resident set size (KB) = 1618068 Test 042 control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.402786 - 0: The maximum resident set size (KB) = 880064 + 0: The total amount of wall time = 90.243101 + 0: The maximum resident set size (KB) = 884780 Test 043 control_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.283133 - 0: The maximum resident set size (KB) = 1580792 + 0: The total amount of wall time = 176.054189 + 0: The maximum resident set size (KB) = 1591064 Test 044 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.404356 - 0: The maximum resident set size (KB) = 1694232 + 0: The total amount of wall time = 156.379387 + 0: The maximum resident set size (KB) = 1684776 Test 045 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.948285 - 0: The maximum resident set size (KB) = 1615944 + 0: The total amount of wall time = 314.306371 + 0: The maximum resident set size (KB) = 1609692 Test 046 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.898107 - 0: The maximum resident set size (KB) = 1673404 + 0: The total amount of wall time = 229.823093 + 0: The maximum resident set size (KB) = 1628356 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.121395 - 0: The maximum resident set size (KB) = 1613092 + 0: The total amount of wall time = 171.280882 + 0: The maximum resident set size (KB) = 1609720 Test 048 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.836247 - 0: The maximum resident set size (KB) = 1619940 + 0: The total amount of wall time = 195.430613 + 0: The maximum resident set size (KB) = 1601776 Test 049 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.277786 - 0: The maximum resident set size (KB) = 1098384 + 0: The total amount of wall time = 289.972835 + 0: The maximum resident set size (KB) = 1090028 Test 050 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 148.312722 - 0: The maximum resident set size (KB) = 1091240 + 0: The total amount of wall time = 150.208017 + 0: The maximum resident set size (KB) = 1084228 Test 051 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.913250 - 0: The maximum resident set size (KB) = 1094320 + 0: The total amount of wall time = 289.504833 + 0: The maximum resident set size (KB) = 1092044 Test 052 regional_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.038898 - 0: The maximum resident set size (KB) = 1091028 + 0: The total amount of wall time = 149.849846 + 0: The maximum resident set size (KB) = 1083624 Test 053 regional_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.361257 - 0: The maximum resident set size (KB) = 1090500 + 0: The total amount of wall time = 306.173106 + 0: The maximum resident set size (KB) = 1081324 Test 054 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 175.539395 - 0: The maximum resident set size (KB) = 1067264 + 0: The total amount of wall time = 175.607219 + 0: The maximum resident set size (KB) = 1070664 Test 055 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 289.433829 - 0: The maximum resident set size (KB) = 1362272 + 0: The total amount of wall time = 288.565869 + 0: The maximum resident set size (KB) = 1356436 Test 056 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.200836 - 0: The maximum resident set size (KB) = 1084876 + 0: The total amount of wall time = 287.831717 + 0: The maximum resident set size (KB) = 1082924 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.607456 - 0: The maximum resident set size (KB) = 1089220 + 0: The total amount of wall time = 291.218752 + 0: The maximum resident set size (KB) = 1095284 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 370.574408 - 0: The maximum resident set size (KB) = 921304 + 0: The total amount of wall time = 372.219172 + 0: The maximum resident set size (KB) = 913496 Test 059 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.817257 - 0: The maximum resident set size (KB) = 1237572 + 0: The total amount of wall time = 446.172818 + 0: The maximum resident set size (KB) = 1236652 Test 060 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 229.790924 - 0: The maximum resident set size (KB) = 1206452 + 0: The total amount of wall time = 231.849259 + 0: The maximum resident set size (KB) = 1178972 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.210160 - 0: The maximum resident set size (KB) = 1168768 + 0: The total amount of wall time = 468.179216 + 0: The maximum resident set size (KB) = 1166704 Test 062 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.885762 - 0: The maximum resident set size (KB) = 1323600 + 0: The total amount of wall time = 430.926945 + 0: The maximum resident set size (KB) = 1325580 Test 063 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.006255 - 0: The maximum resident set size (KB) = 1137272 + 0: The total amount of wall time = 228.715651 + 0: The maximum resident set size (KB) = 1133716 Test 064 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.930072 - 0: The maximum resident set size (KB) = 1238716 + 0: The total amount of wall time = 448.428600 + 0: The maximum resident set size (KB) = 1231560 Test 065 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.208274 - 0: The maximum resident set size (KB) = 1167052 + 0: The total amount of wall time = 471.257323 + 0: The maximum resident set size (KB) = 1158992 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.419099 - 0: The maximum resident set size (KB) = 1166444 + 0: The total amount of wall time = 333.697774 + 0: The maximum resident set size (KB) = 1167144 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.600929 - 0: The maximum resident set size (KB) = 1183212 + 0: The total amount of wall time = 430.193719 + 0: The maximum resident set size (KB) = 1182400 Test 068 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.745843 - 0: The maximum resident set size (KB) = 1089564 + 0: The total amount of wall time = 429.379357 + 0: The maximum resident set size (KB) = 1079868 Test 069 hrrr_control_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.006116 - 0: The maximum resident set size (KB) = 1110876 + 0: The total amount of wall time = 448.616262 + 0: The maximum resident set size (KB) = 1112892 Test 070 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.342569 - 0: The maximum resident set size (KB) = 1125660 + 0: The total amount of wall time = 394.906576 + 0: The maximum resident set size (KB) = 1125076 Test 071 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.116298 - 0: The maximum resident set size (KB) = 1117252 + 0: The total amount of wall time = 320.543232 + 0: The maximum resident set size (KB) = 1108784 Test 072 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.845502 - 0: The maximum resident set size (KB) = 1013380 + 0: The total amount of wall time = 321.627080 + 0: The maximum resident set size (KB) = 1025456 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.902676 - 0: The maximum resident set size (KB) = 1208188 + 0: The total amount of wall time = 441.224342 + 0: The maximum resident set size (KB) = 1195244 Test 074 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.330710 - 0: The maximum resident set size (KB) = 806768 + 0: The total amount of wall time = 518.867169 + 0: The maximum resident set size (KB) = 807648 Test 075 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 506.934353 - 0: The maximum resident set size (KB) = 917032 + 0: The total amount of wall time = 510.009959 + 0: The maximum resident set size (KB) = 908948 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_gf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.653733 - 0: The maximum resident set size (KB) = 1226136 + 0: The total amount of wall time = 447.849671 + 0: The maximum resident set size (KB) = 1224248 Test 077 hrrr_gf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_c3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3486,14 +3486,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.630981 - 0: The maximum resident set size (KB) = 1226424 + 0: The total amount of wall time = 451.887878 + 0: The maximum resident set size (KB) = 1220668 Test 078 hrrr_c3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.727327 - 0: The maximum resident set size (KB) = 814596 + 0: The total amount of wall time = 340.849590 + 0: The maximum resident set size (KB) = 786968 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3522,14 +3522,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.566423 - 0: The maximum resident set size (KB) = 819144 + 0: The total amount of wall time = 334.092036 + 0: The maximum resident set size (KB) = 794860 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3540,26 +3540,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.939739 - 0: The maximum resident set size (KB) = 811828 + 0: The total amount of wall time = 187.015077 + 0: The maximum resident set size (KB) = 813356 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.706600 - 0: The maximum resident set size (KB) = 702652 + 0: The total amount of wall time = 113.037421 + 0: The maximum resident set size (KB) = 702176 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.364468 - 0: The maximum resident set size (KB) = 1602792 + 0: The total amount of wall time = 155.363481 + 0: The maximum resident set size (KB) = 1607724 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3624,14 +3624,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.029921 - 0: The maximum resident set size (KB) = 1092556 + 0: The total amount of wall time = 263.913111 + 0: The maximum resident set size (KB) = 1096892 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3658,348 +3658,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.298745 - 0: The maximum resident set size (KB) = 788264 + 0: The total amount of wall time = 145.530821 + 0: The maximum resident set size (KB) = 798556 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.178118 - 0: The maximum resident set size (KB) = 801412 + 0: The total amount of wall time = 147.136481 + 0: The maximum resident set size (KB) = 800612 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.240715 - 0: The maximum resident set size (KB) = 806972 + 0: The total amount of wall time = 166.636073 + 0: The maximum resident set size (KB) = 797096 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.729636 - 0: The maximum resident set size (KB) = 785424 + 0: The total amount of wall time = 151.238169 + 0: The maximum resident set size (KB) = 799088 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.191947 - 0: The maximum resident set size (KB) = 850444 + 0: The total amount of wall time = 229.362180 + 0: The maximum resident set size (KB) = 818652 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.802457 - 0: The maximum resident set size (KB) = 847588 + 0: The total amount of wall time = 227.928332 + 0: The maximum resident set size (KB) = 845856 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.456004 - 0: The maximum resident set size (KB) = 813140 + 0: The total amount of wall time = 150.958005 + 0: The maximum resident set size (KB) = 809536 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.936991 - 0: The maximum resident set size (KB) = 860188 + 0: The total amount of wall time = 152.484884 + 0: The maximum resident set size (KB) = 850636 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.766597 - 0: The maximum resident set size (KB) = 1626244 + 0: The total amount of wall time = 167.333036 + 0: The maximum resident set size (KB) = 1624372 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 970.286040 - 0: The maximum resident set size (KB) = 1103872 + 0: The total amount of wall time = 991.678263 + 0: The maximum resident set size (KB) = 1099064 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.712581 - 0: The maximum resident set size (KB) = 1189820 + 0: The total amount of wall time = 270.894449 + 0: The maximum resident set size (KB) = 1182472 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.651292 - 0: The maximum resident set size (KB) = 1179960 + 0: The total amount of wall time = 268.393022 + 0: The maximum resident set size (KB) = 1176064 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.495175 - 0: The maximum resident set size (KB) = 1192928 + 0: The total amount of wall time = 274.477104 + 0: The maximum resident set size (KB) = 1178936 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.684425 - 0: The maximum resident set size (KB) = 1267772 + 0: The total amount of wall time = 285.844008 + 0: The maximum resident set size (KB) = 1265740 Test 098 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.025220 - 0: The maximum resident set size (KB) = 1175648 + 0: The total amount of wall time = 276.875743 + 0: The maximum resident set size (KB) = 1187396 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.585504 - 0: The maximum resident set size (KB) = 1188900 + 0: The total amount of wall time = 278.956027 + 0: The maximum resident set size (KB) = 1178400 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.699997 - 0: The maximum resident set size (KB) = 1190328 + 0: The total amount of wall time = 275.633938 + 0: The maximum resident set size (KB) = 1178052 Test 101 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.394258 - 0: The maximum resident set size (KB) = 1190576 + 0: The total amount of wall time = 271.090632 + 0: The maximum resident set size (KB) = 1178120 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.959246 - 0: The maximum resident set size (KB) = 1198432 + 0: The total amount of wall time = 263.837438 + 0: The maximum resident set size (KB) = 1187524 Test 103 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.601266 - 0: The maximum resident set size (KB) = 1183496 + 0: The total amount of wall time = 273.606906 + 0: The maximum resident set size (KB) = 1184456 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 445.816101 - 0: The maximum resident set size (KB) = 1195228 + 0: The total amount of wall time = 447.504955 + 0: The maximum resident set size (KB) = 1175224 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.670981 - 0: The maximum resident set size (KB) = 1178376 + 0: The total amount of wall time = 266.444110 + 0: The maximum resident set size (KB) = 1188536 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 338.269721 - 0: The maximum resident set size (KB) = 1193920 + 0: The total amount of wall time = 331.189761 + 0: The maximum resident set size (KB) = 1181620 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.459446 - 0: The maximum resident set size (KB) = 1183688 + 0: The total amount of wall time = 274.948571 + 0: The maximum resident set size (KB) = 1180188 Test 108 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.001893 - 0: The maximum resident set size (KB) = 590536 + 0: The total amount of wall time = 274.932319 + 0: The maximum resident set size (KB) = 589216 Test 109 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +4010,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 214.457067 - 0: The maximum resident set size (KB) = 1109848 + 0: The total amount of wall time = 219.586548 + 0: The maximum resident set size (KB) = 1106732 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.030309 - 0: The maximum resident set size (KB) = 1101968 + 0: The total amount of wall time = 374.050499 + 0: The maximum resident set size (KB) = 1099600 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.981967 - 0: The maximum resident set size (KB) = 1033788 + 0: The total amount of wall time = 189.574978 + 0: The maximum resident set size (KB) = 1030108 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.249155 - 0: The maximum resident set size (KB) = 981200 + 0: The total amount of wall time = 190.434260 + 0: The maximum resident set size (KB) = 986720 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.257300 - 0: The maximum resident set size (KB) = 1125216 + 0: The total amount of wall time = 353.438898 + 0: The maximum resident set size (KB) = 1101416 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.651180 - 0: The maximum resident set size (KB) = 973100 + 0: The total amount of wall time = 175.745924 + 0: The maximum resident set size (KB) = 962872 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.584832 - 0: The maximum resident set size (KB) = 981008 + 0: The total amount of wall time = 200.647854 + 0: The maximum resident set size (KB) = 976048 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,42 +4380,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.265274 - 0: The maximum resident set size (KB) = 1050768 + 0: The total amount of wall time = 274.736154 + 0: The maximum resident set size (KB) = 1054020 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.919193 - 0: The maximum resident set size (KB) = 933976 + 0: The total amount of wall time = 100.949718 + 0: The maximum resident set size (KB) = 932696 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.986302 - 0: The maximum resident set size (KB) = 883064 + 0: The total amount of wall time = 101.195962 + 0: The maximum resident set size (KB) = 887284 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4431,40 +4431,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.944711 - 0: The maximum resident set size (KB) = 1252016 + 0: The total amount of wall time = 112.819497 + 0: The maximum resident set size (KB) = 1252092 Test 120 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 42.935398 - 0: The maximum resident set size (KB) = 1169792 + 0: The total amount of wall time = 45.625841 + 0: The maximum resident set size (KB) = 1167512 Test 121 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 63.159260 - 0: The maximum resident set size (KB) = 1188468 + 0: The total amount of wall time = 62.601330 + 0: The maximum resident set size (KB) = 1179280 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4511,123 +4511,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.236933 - 0: The maximum resident set size (KB) = 1096048 + 0: The total amount of wall time = 240.622844 + 0: The maximum resident set size (KB) = 1096188 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.362873 - 0: The maximum resident set size (KB) = 1069460 + 0: The total amount of wall time = 264.771958 + 0: The maximum resident set size (KB) = 1057836 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.816270 - 0: The maximum resident set size (KB) = 1074312 + 0: The total amount of wall time = 263.398481 + 0: The maximum resident set size (KB) = 1067584 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 826.612719 - 0: The maximum resident set size (KB) = 1263764 + 0: The total amount of wall time = 846.244413 + 0: The maximum resident set size (KB) = 1249104 Test 126 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.414187 - 0: The maximum resident set size (KB) = 1200620 + 0: The total amount of wall time = 476.721367 + 0: The maximum resident set size (KB) = 1177780 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 819.967498 - 0: The maximum resident set size (KB) = 1340856 + 0: The total amount of wall time = 827.686204 + 0: The maximum resident set size (KB) = 1302900 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.344373 - 0: The maximum resident set size (KB) = 1101388 + 0: The total amount of wall time = 274.079703 + 0: The maximum resident set size (KB) = 1099364 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 214.969449 - 0: The maximum resident set size (KB) = 1240540 + 0: The total amount of wall time = 218.105060 + 0: The maximum resident set size (KB) = 1245408 Test 130 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 340.166981 - 0: The maximum resident set size (KB) = 1582504 + 0: The total amount of wall time = 344.919865 + 0: The maximum resident set size (KB) = 1568560 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4636,14 +4636,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.234801 - 0: The maximum resident set size (KB) = 1420816 + 0: The total amount of wall time = 370.256448 + 0: The maximum resident set size (KB) = 1403244 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4652,14 +4652,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 745.324629 - 0: The maximum resident set size (KB) = 1447908 + 0: The total amount of wall time = 744.148085 + 0: The maximum resident set size (KB) = 1444400 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4670,14 +4670,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 847.874687 - 0: The maximum resident set size (KB) = 1460940 + 0: The total amount of wall time = 848.180503 + 0: The maximum resident set size (KB) = 1460992 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4699,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 298.846894 - 0: The maximum resident set size (KB) = 654504 + 0: The total amount of wall time = 299.110221 + 0: The maximum resident set size (KB) = 651416 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4728,14 +4728,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 303.110643 - 0: The maximum resident set size (KB) = 499212 + 0: The total amount of wall time = 317.830459 + 0: The maximum resident set size (KB) = 495928 Test 136 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4744,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 338.906099 - 0: The maximum resident set size (KB) = 659892 + 0: The total amount of wall time = 344.247042 + 0: The maximum resident set size (KB) = 663860 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4798,14 +4798,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 136.412822 - 0: The maximum resident set size (KB) = 402172 + 0: The total amount of wall time = 137.560579 + 0: The maximum resident set size (KB) = 403956 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4852,14 +4852,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 142.704586 - 0: The maximum resident set size (KB) = 376888 + 0: The total amount of wall time = 142.153440 + 0: The maximum resident set size (KB) = 371888 Test 139 hafs_global_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4941,14 +4941,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 376.755962 - 0: The maximum resident set size (KB) = 474924 + 0: The total amount of wall time = 382.627133 + 0: The maximum resident set size (KB) = 478852 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_multiple_4nests_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 413.152252 - 0: The maximum resident set size (KB) = 469800 + 0: The total amount of wall time = 422.171472 + 0: The maximum resident set size (KB) = 472280 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5046,14 +5046,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 189.485946 - 0: The maximum resident set size (KB) = 668344 + 0: The total amount of wall time = 190.709779 + 0: The maximum resident set size (KB) = 665384 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,14 +5075,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 177.095832 - 0: The maximum resident set size (KB) = 635864 + 0: The total amount of wall time = 178.077369 + 0: The maximum resident set size (KB) = 671024 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 189.103818 - 0: The maximum resident set size (KB) = 534472 + 0: The total amount of wall time = 196.171377 + 0: The maximum resident set size (KB) = 528532 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,42 +5120,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 218.789857 - 0: The maximum resident set size (KB) = 720380 + 0: The total amount of wall time = 219.548688 + 0: The maximum resident set size (KB) = 719096 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 55.095423 - 0: The maximum resident set size (KB) = 415628 + 0: The total amount of wall time = 54.589335 + 0: The maximum resident set size (KB) = 417748 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 719.567327 - 0: The maximum resident set size (KB) = 725696 + 0: The total amount of wall time = 720.188962 + 0: The maximum resident set size (KB) = 727812 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 479.786851 - 0: The maximum resident set size (KB) = 805512 + 0: The total amount of wall time = 482.161102 + 0: The maximum resident set size (KB) = 806536 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5181,14 +5181,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 337.918100 - 0: The maximum resident set size (KB) = 1412656 + 0: The total amount of wall time = 331.596347 + 0: The maximum resident set size (KB) = 1406012 Test 149 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5196,131 +5196,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 337.951407 - 0: The maximum resident set size (KB) = 1395588 + 0: The total amount of wall time = 338.361715 + 0: The maximum resident set size (KB) = 1391140 Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 959.212642 - 0: The maximum resident set size (KB) = 1152756 + 0: The total amount of wall time = 983.468570 + 0: The maximum resident set size (KB) = 1128868 Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.030235 - 0: The maximum resident set size (KB) = 1109444 + 0: The total amount of wall time = 158.195762 + 0: The maximum resident set size (KB) = 1107376 Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.997073 - 0: The maximum resident set size (KB) = 1059592 + 0: The total amount of wall time = 94.205131 + 0: The maximum resident set size (KB) = 1056152 Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.441531 - 0: The maximum resident set size (KB) = 1011224 + 0: The total amount of wall time = 151.951124 + 0: The maximum resident set size (KB) = 997092 Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.235812 - 0: The maximum resident set size (KB) = 1000272 + 0: The total amount of wall time = 153.343635 + 0: The maximum resident set size (KB) = 999524 Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.453281 - 0: The maximum resident set size (KB) = 1004020 + 0: The total amount of wall time = 150.782529 + 0: The maximum resident set size (KB) = 997748 Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.928335 - 0: The maximum resident set size (KB) = 1106780 + 0: The total amount of wall time = 155.123687 + 0: The maximum resident set size (KB) = 1107256 Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.588438 - 0: The maximum resident set size (KB) = 1111716 + 0: The total amount of wall time = 156.650591 + 0: The maximum resident set size (KB) = 1110620 Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.420827 - 0: The maximum resident set size (KB) = 988724 + 0: The total amount of wall time = 149.798714 + 0: The maximum resident set size (KB) = 984660 Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 434.463534 - 0: The maximum resident set size (KB) = 1056764 + 0: The total amount of wall time = 439.299256 + 0: The maximum resident set size (KB) = 1034692 Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5345,77 +5345,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 435.800563 - 0: The maximum resident set size (KB) = 1013836 + 0: The total amount of wall time = 447.387295 + 0: The maximum resident set size (KB) = 1021448 Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.159968 - 0: The maximum resident set size (KB) = 1110232 + 0: The total amount of wall time = 152.585531 + 0: The maximum resident set size (KB) = 1118404 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 224.675447 - 0: The maximum resident set size (KB) = 2463012 + 0: The total amount of wall time = 232.071089 + 0: The maximum resident set size (KB) = 2453576 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 225.479034 - 0: The maximum resident set size (KB) = 2461528 + 0: The total amount of wall time = 229.065960 + 0: The maximum resident set size (KB) = 2457916 Test 164 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 347.275324 - 0: The maximum resident set size (KB) = 1042132 + 0: The total amount of wall time = 348.674934 + 0: The maximum resident set size (KB) = 1037596 Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.186141 - 0: The maximum resident set size (KB) = 1101796 + 0: The total amount of wall time = 151.579458 + 0: The maximum resident set size (KB) = 1120324 Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5424,14 +5424,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.896443 - 0: The maximum resident set size (KB) = 254004 + 0: The total amount of wall time = 6.016223 + 0: The maximum resident set size (KB) = 255176 Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_lnd_gswp3_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5440,14 +5440,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.740863 - 0: The maximum resident set size (KB) = 247800 + 0: The total amount of wall time = 10.581936 + 0: The maximum resident set size (KB) = 247892 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5532,14 +5532,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 201.569668 - 0: The maximum resident set size (KB) = 1613804 + 0: The total amount of wall time = 204.837308 + 0: The maximum resident set size (KB) = 1615956 Test 169 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5582,14 +5582,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.152251 - 0: The maximum resident set size (KB) = 1644788 + 0: The total amount of wall time = 97.727169 + 0: The maximum resident set size (KB) = 1642796 Test 170 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5633,14 +5633,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.980500 - 0: The maximum resident set size (KB) = 661620 + 0: The total amount of wall time = 89.498559 + 0: The maximum resident set size (KB) = 663196 Test 171 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5684,14 +5684,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.408450 - 0: The maximum resident set size (KB) = 2999056 + 0: The total amount of wall time = 229.917640 + 0: The maximum resident set size (KB) = 2994712 Test 172 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5735,14 +5735,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.901177 - 0: The maximum resident set size (KB) = 3059032 + 0: The total amount of wall time = 282.175518 + 0: The maximum resident set size (KB) = 3065176 Test 173 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5786,14 +5786,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.853655 - 0: The maximum resident set size (KB) = 3071488 + 0: The total amount of wall time = 294.600404 + 0: The maximum resident set size (KB) = 3072852 Test 174 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5809,14 +5809,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.746474 - 0: The maximum resident set size (KB) = 5395712 + 0: The total amount of wall time = 647.879531 + 0: The maximum resident set size (KB) = 5401476 Test 175 regional_atmaq_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5830,14 +5830,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1206.822113 - 0: The maximum resident set size (KB) = 4792344 + 0: The total amount of wall time = 1203.219780 + 0: The maximum resident set size (KB) = 4890468 Test 176 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5853,14 +5853,14 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 569.911463 - 0: The maximum resident set size (KB) = 5426916 + 0: The total amount of wall time = 555.547526 + 0: The maximum resident set size (KB) = 5376388 Test 177 regional_atmaq_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c48_gnu Checking test 178 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5899,14 +5899,14 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 684.445389 -0: The maximum resident set size (KB) = 732608 +0: The total amount of wall time = 688.237828 +0: The maximum resident set size (KB) = 731844 Test 178 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_gnu Checking test 179 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5917,14 +5917,14 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 226.678758 - 0: The maximum resident set size (KB) = 536940 + 0: The total amount of wall time = 241.660578 + 0: The maximum resident set size (KB) = 535672 Test 179 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_gnu Checking test 180 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5935,14 +5935,14 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 278.591653 - 0: The maximum resident set size (KB) = 546908 + 0: The total amount of wall time = 288.287551 + 0: The maximum resident set size (KB) = 544604 Test 180 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_gnu Checking test 181 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5989,14 +5989,14 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.977072 - 0: The maximum resident set size (KB) = 1294468 + 0: The total amount of wall time = 296.739450 + 0: The maximum resident set size (KB) = 1292796 Test 181 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_flake_gnu Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.121133 - 0: The maximum resident set size (KB) = 586752 + 0: The total amount of wall time = 340.131779 + 0: The maximum resident set size (KB) = 580252 Test 182 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_gnu Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.034672 - 0: The maximum resident set size (KB) = 854984 + 0: The total amount of wall time = 674.224853 + 0: The maximum resident set size (KB) = 845084 Test 183 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_decomp_gnu Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6115,14 +6115,14 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 680.520665 - 0: The maximum resident set size (KB) = 852088 + 0: The total amount of wall time = 691.136567 + 0: The maximum resident set size (KB) = 844220 Test 184 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_gnu Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6169,14 +6169,14 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 611.655802 - 0: The maximum resident set size (KB) = 951724 + 0: The total amount of wall time = 610.263520 + 0: The maximum resident set size (KB) = 950292 Test 185 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_gnu Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6215,14 +6215,14 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.475261 - 0: The maximum resident set size (KB) = 752680 + 0: The total amount of wall time = 346.555188 + 0: The maximum resident set size (KB) = 754776 Test 186 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_gnu Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6269,14 +6269,14 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 676.200569 - 0: The maximum resident set size (KB) = 844512 + 0: The total amount of wall time = 678.581895 + 0: The maximum resident set size (KB) = 846492 Test 187 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_decomp_gnu Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6323,14 +6323,14 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.541051 - 0: The maximum resident set size (KB) = 845984 + 0: The total amount of wall time = 684.651056 + 0: The maximum resident set size (KB) = 844724 Test 188 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_restart_gnu Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6369,14 +6369,14 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.887332 - 0: The maximum resident set size (KB) = 766424 + 0: The total amount of wall time = 504.226221 + 0: The maximum resident set size (KB) = 750416 Test 189 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_gnu Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6423,14 +6423,14 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.034215 - 0: The maximum resident set size (KB) = 844324 + 0: The total amount of wall time = 660.257479 + 0: The maximum resident set size (KB) = 843340 Test 190 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_gnu Checking test 191 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6477,14 +6477,14 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 656.528080 - 0: The maximum resident set size (KB) = 854048 + 0: The total amount of wall time = 659.377005 + 0: The maximum resident set size (KB) = 853924 Test 191 hrrr_control_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_gnu Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6531,14 +6531,14 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 575.451544 - 0: The maximum resident set size (KB) = 952316 + 0: The total amount of wall time = 576.972066 + 0: The maximum resident set size (KB) = 954072 Test 192 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_gnu Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6585,42 +6585,42 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.491548 - 0: The maximum resident set size (KB) = 880792 + 0: The total amount of wall time = 653.908570 + 0: The maximum resident set size (KB) = 844460 Test 193 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_gnu Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 490.989398 - 0: The maximum resident set size (KB) = 710068 + 0: The total amount of wall time = 488.023305 + 0: The maximum resident set size (KB) = 707336 Test 194 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_gnu Checking test 195 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 493.390327 - 0: The maximum resident set size (KB) = 611836 + 0: The total amount of wall time = 493.647288 + 0: The maximum resident set size (KB) = 614008 Test 195 hrrr_control_restart_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_gnu Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6667,14 +6667,14 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.943178 - 0: The maximum resident set size (KB) = 845160 + 0: The total amount of wall time = 682.197102 + 0: The maximum resident set size (KB) = 842352 Test 196 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_gf_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_gf_gnu Checking test 197 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6721,208 +6721,208 @@ Checking test 197 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 688.693508 - 0: The maximum resident set size (KB) = 847188 + 0: The total amount of wall time = 684.641801 + 0: The maximum resident set size (KB) = 846796 Test 197 hrrr_gf_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 82.631494 - 0: The maximum resident set size (KB) = 587276 + 0: The total amount of wall time = 83.956154 + 0: The maximum resident set size (KB) = 546160 Test 198 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 435.690577 - 0: The maximum resident set size (KB) = 816464 + 0: The total amount of wall time = 437.509727 + 0: The maximum resident set size (KB) = 818960 Test 199 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.623093 - 0: The maximum resident set size (KB) = 892524 + 0: The total amount of wall time = 135.883227 + 0: The maximum resident set size (KB) = 892856 Test 200 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 133.082068 - 0: The maximum resident set size (KB) = 854812 + 0: The total amount of wall time = 138.313096 + 0: The maximum resident set size (KB) = 853340 Test 201 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.749667 - 0: The maximum resident set size (KB) = 939984 + 0: The total amount of wall time = 148.835533 + 0: The maximum resident set size (KB) = 939232 Test 202 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.475792 - 0: The maximum resident set size (KB) = 895964 + 0: The total amount of wall time = 218.193998 + 0: The maximum resident set size (KB) = 861056 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.833755 - 0: The maximum resident set size (KB) = 858164 + 0: The total amount of wall time = 138.973118 + 0: The maximum resident set size (KB) = 859124 Test 204 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.677078 - 0: The maximum resident set size (KB) = 890264 + 0: The total amount of wall time = 140.040617 + 0: The maximum resident set size (KB) = 854180 Test 205 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 78.813364 - 0: The maximum resident set size (KB) = 502464 + 0: The total amount of wall time = 81.106157 + 0: The maximum resident set size (KB) = 533944 Test 206 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.575884 - 0: The maximum resident set size (KB) = 497960 + 0: The total amount of wall time = 124.203439 + 0: The maximum resident set size (KB) = 493668 Test 207 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 86.784521 - 0: The maximum resident set size (KB) = 1278496 + 0: The total amount of wall time = 88.152884 + 0: The maximum resident set size (KB) = 1279776 Test 208 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.487626 - 0: The maximum resident set size (KB) = 896560 + 0: The total amount of wall time = 139.171072 + 0: The maximum resident set size (KB) = 856212 Test 209 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.411101 - 0: The maximum resident set size (KB) = 859056 + 0: The total amount of wall time = 155.628493 + 0: The maximum resident set size (KB) = 861184 Test 210 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_debug_gnu Checking test 211 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 134.741086 - 0: The maximum resident set size (KB) = 284980 + 0: The total amount of wall time = 137.499979 + 0: The maximum resident set size (KB) = 282340 Test 211 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6969,14 +6969,14 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.797589 - 0: The maximum resident set size (KB) = 745428 + 0: The total amount of wall time = 705.652677 + 0: The maximum resident set size (KB) = 741876 Test 212 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7023,14 +7023,14 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.792456 - 0: The maximum resident set size (KB) = 745984 + 0: The total amount of wall time = 351.267022 + 0: The maximum resident set size (KB) = 740648 Test 213 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7077,14 +7077,14 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 354.527297 - 0: The maximum resident set size (KB) = 753796 + 0: The total amount of wall time = 352.277411 + 0: The maximum resident set size (KB) = 749052 Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_dyn32_phy32_gnu Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7131,14 +7131,14 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.366460 - 0: The maximum resident set size (KB) = 789300 + 0: The total amount of wall time = 625.665116 + 0: The maximum resident set size (KB) = 792596 Test 215 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_dyn32_phy32_gnu Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7185,14 +7185,14 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.245637 - 0: The maximum resident set size (KB) = 792288 + 0: The total amount of wall time = 309.759257 + 0: The maximum resident set size (KB) = 787796 Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_dyn32_phy32_gnu Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7239,14 +7239,14 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.212745 - 0: The maximum resident set size (KB) = 742052 + 0: The total amount of wall time = 356.398678 + 0: The maximum resident set size (KB) = 740060 Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_dyn32_phy32_gnu Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7285,42 +7285,42 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.365049 - 0: The maximum resident set size (KB) = 654028 + 0: The total amount of wall time = 524.914647 + 0: The maximum resident set size (KB) = 651432 Test 218 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_dyn32_phy32_gnu Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 182.460409 - 0: The maximum resident set size (KB) = 615536 + 0: The total amount of wall time = 186.020700 + 0: The maximum resident set size (KB) = 615816 Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_restart_qr_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.781196 - 0: The maximum resident set size (KB) = 580628 + 0: The total amount of wall time = 185.335820 + 0: The maximum resident set size (KB) = 579668 Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_control_gnu Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7336,40 +7336,40 @@ Checking test 221 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 241.363461 - 0: The maximum resident set size (KB) = 953056 + 0: The total amount of wall time = 241.969550 + 0: The maximum resident set size (KB) = 951212 Test 221 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_2threads_gnu Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.138322 - 0: The maximum resident set size (KB) = 997208 + 0: The total amount of wall time = 103.197613 + 0: The maximum resident set size (KB) = 989876 Test 222 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_restart_mismatch_gnu Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.968301 - 0: The maximum resident set size (KB) = 611292 + 0: The total amount of wall time = 125.614333 + 0: The maximum resident set size (KB) = 605856 Test 223 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_gnu Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7416,98 +7416,98 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 404.322058 - 0: The maximum resident set size (KB) = 771608 + 0: The total amount of wall time = 413.167453 + 0: The maximum resident set size (KB) = 779604 Test 224 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_dyn32_phy32_gnu Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.170697 - 0: The maximum resident set size (KB) = 754952 + 0: The total amount of wall time = 139.167894 + 0: The maximum resident set size (KB) = 753832 Test 225 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_dyn32_phy32_gnu Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 133.914407 - 0: The maximum resident set size (KB) = 751296 + 0: The total amount of wall time = 136.552873 + 0: The maximum resident set size (KB) = 750240 Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_gnu Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 416.441863 - 0: The maximum resident set size (KB) = 970620 + 0: The total amount of wall time = 416.000602 + 0: The maximum resident set size (KB) = 965556 Test 227 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_2threads_gnu Checking test 228 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.372351 - 0: The maximum resident set size (KB) = 1013728 + 0: The total amount of wall time = 256.110782 + 0: The maximum resident set size (KB) = 1011764 Test 228 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_radar_tten_debug_gnu Checking test 229 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 422.016078 - 0: The maximum resident set size (KB) = 1032852 + 0: The total amount of wall time = 415.884535 + 0: The maximum resident set size (KB) = 1033464 Test 229 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_debug_gnu Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.193078 - 0: The maximum resident set size (KB) = 780996 + 0: The total amount of wall time = 144.396740 + 0: The maximum resident set size (KB) = 777544 Test 230 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_gnu Checking test 231 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7572,14 +7572,14 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 637.002307 - 0: The maximum resident set size (KB) = 1505104 + 0: The total amount of wall time = 640.742062 + 0: The maximum resident set size (KB) = 1507120 Test 231 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_nowave_noaero_p8_gnu Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7641,14 +7641,14 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 409.444547 - 0: The maximum resident set size (KB) = 1406256 + 0: The total amount of wall time = 406.126607 + 0: The maximum resident set size (KB) = 1401516 Test 232 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_p8_gnu Checking test 233 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7701,14 +7701,14 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.665016 - 0: The maximum resident set size (KB) = 1519552 + 0: The total amount of wall time = 363.171815 + 0: The maximum resident set size (KB) = 1513840 Test 233 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_pdlib_p8_gnu Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7772,14 +7772,14 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1425.224878 - 0: The maximum resident set size (KB) = 1376768 + 0: The total amount of wall time = 1429.978746 + 0: The maximum resident set size (KB) = 1377116 Test 234 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_pdlib_p8_gnu Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7831,25 +7831,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 720.796148 - 0: The maximum resident set size (KB) = 1389112 + 0: The total amount of wall time = 718.873228 + 0: The maximum resident set size (KB) = 1385708 Test 235 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26447/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_gnu Checking test 236 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.934477 - 0: The maximum resident set size (KB) = 687472 + 0: The total amount of wall time = 179.737169 + 0: The maximum resident set size (KB) = 684068 Test 236 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Fri Sep 22 23:39:34 UTC 2023 -Elapsed time: 01h:36m:50s. Have a nice day! +Thu Sep 28 07:31:36 UTC 2023 +Elapsed time: 01h:44m:15s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 5ac711eb43..a4005179ac 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,72 +1,72 @@ -Sun Sep 24 09:27:56 CDT 2023 +Thu Sep 28 08:02:39 AM CDT 2023 Start Regression test -Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 +Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 192 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 150 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 537 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 176 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 172 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 264 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 390 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 167 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 535 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 373 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 407 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 116 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 175 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 183 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 611 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 508 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 559 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 226 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 673 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 127 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 223 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 730 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 830 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 247 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 717 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 359 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atmaero_intel elapsed time 376 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 149 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 563 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 191 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 157 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 508 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 160 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 248 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 392 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 569 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 175 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 176 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 606 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 184 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 626 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 518 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 420 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 198 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 709 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 118 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 331 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 790 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 245 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 697 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 310 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 116 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 214 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 346 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.695542 - 0: The maximum resident set size (KB) = 1897468 + 0: The total amount of wall time = 432.591438 + 0: The maximum resident set size (KB) = 1887468 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 483.128288 - 0: The maximum resident set size (KB) = 1725192 + 0: The total amount of wall time = 494.222393 + 0: The maximum resident set size (KB) = 1724972 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.765442 - 0: The maximum resident set size (KB) = 2056408 + 0: The total amount of wall time = 433.181856 + 0: The maximum resident set size (KB) = 2053120 Test 003 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.518326 - 0: The maximum resident set size (KB) = 1919992 + 0: The total amount of wall time = 251.178090 + 0: The maximum resident set size (KB) = 1922820 Test 004 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.925000 - 0: The maximum resident set size (KB) = 1966160 + 0: The total amount of wall time = 439.398624 + 0: The maximum resident set size (KB) = 1965456 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +466,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 238.684158 - 0: The maximum resident set size (KB) = 1558508 + 0: The total amount of wall time = 251.947159 + 0: The maximum resident set size (KB) = 1556888 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,14 +526,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.612757 - 0: The maximum resident set size (KB) = 2465732 + 0: The total amount of wall time = 519.427599 + 0: The maximum resident set size (KB) = 2483432 Test 007 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +586,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.829157 - 0: The maximum resident set size (KB) = 2040024 + 0: The total amount of wall time = 450.018421 + 0: The maximum resident set size (KB) = 2037284 Test 008 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_mpi_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +646,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 378.404827 - 0: The maximum resident set size (KB) = 1879040 + 0: The total amount of wall time = 373.404023 + 0: The maximum resident set size (KB) = 1862668 Test 009 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.024376 - 0: The maximum resident set size (KB) = 2036600 + 0: The total amount of wall time = 435.365880 + 0: The maximum resident set size (KB) = 2050124 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +778,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 883.394853 - 0: The maximum resident set size (KB) = 2795568 + 0: The total amount of wall time = 907.091170 + 0: The maximum resident set size (KB) = 2795088 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +838,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 335.129569 - 0: The maximum resident set size (KB) = 2824540 + 0: The total amount of wall time = 357.013144 + 0: The maximum resident set size (KB) = 2813812 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 534.365049 - 0: The maximum resident set size (KB) = 3601416 + 0: The total amount of wall time = 544.683743 + 0: The maximum resident set size (KB) = 3607468 Test 013 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_restart_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.002415 - 0: The maximum resident set size (KB) = 3511192 + 0: The total amount of wall time = 430.759625 + 0: The maximum resident set size (KB) = 3514172 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1019,14 +1019,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.623778 - 0: The maximum resident set size (KB) = 1787200 + 0: The total amount of wall time = 413.493762 + 0: The maximum resident set size (KB) = 1791416 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_nowave_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1088,14 +1088,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 237.620224 - 0: The maximum resident set size (KB) = 1827772 + 0: The total amount of wall time = 237.379540 + 0: The maximum resident set size (KB) = 1818820 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1148,14 +1148,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.989715 - 0: The maximum resident set size (KB) = 2028296 + 0: The total amount of wall time = 426.909636 + 0: The maximum resident set size (KB) = 2046284 Test 017 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 299.247827 - 0: The maximum resident set size (KB) = 1795712 + 0: The total amount of wall time = 292.453308 + 0: The maximum resident set size (KB) = 1809596 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1276,14 +1276,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 239.807190 - 0: The maximum resident set size (KB) = 1827480 + 0: The total amount of wall time = 245.630067 + 0: The maximum resident set size (KB) = 1830812 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1333,14 +1333,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 448.184276 - 0: The maximum resident set size (KB) = 2838336 + 0: The total amount of wall time = 446.490217 + 0: The maximum resident set size (KB) = 2827044 Test 020 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1405,14 +1405,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.460972 - 0: The maximum resident set size (KB) = 2074036 + 0: The total amount of wall time = 421.225329 + 0: The maximum resident set size (KB) = 2064752 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 280.570986 - 0: The maximum resident set size (KB) = 774376 + 0: The total amount of wall time = 195.741441 + 0: The maximum resident set size (KB) = 778252 Test 022 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1457,14 +1457,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 116.588718 - 0: The maximum resident set size (KB) = 674492 + 0: The total amount of wall time = 113.130471 + 0: The maximum resident set size (KB) = 673676 Test 023 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1472,21 +1472,21 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1029.344484 - 0: The maximum resident set size (KB) = 680820 + 0: The total amount of wall time = 1187.136467 + 0: The maximum resident set size (KB) = 688468 Test 024 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.815293 - 0: The maximum resident set size (KB) = 679816 + 0: The total amount of wall time = 168.417351 + 0: The maximum resident set size (KB) = 673932 Test 025 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1515,14 +1515,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.945967 - 0: The maximum resident set size (KB) = 673124 + 0: The total amount of wall time = 219.197018 + 0: The maximum resident set size (KB) = 681780 Test 026 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 339.933842 -0: The maximum resident set size (KB) = 820984 +0: The total amount of wall time = 334.796061 +0: The maximum resident set size (KB) = 813068 Test 027 control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 474.734730 - 0: The maximum resident set size (KB) = 905944 + 0: The total amount of wall time = 448.435301 + 0: The maximum resident set size (KB) = 923364 Test 028 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1597,14 +1597,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 478.885727 - 0: The maximum resident set size (KB) = 1571444 + 0: The total amount of wall time = 460.715891 + 0: The maximum resident set size (KB) = 1574736 Test 029 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1647,14 +1647,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.062567 - 0: The maximum resident set size (KB) = 1650464 + 0: The total amount of wall time = 405.957679 + 0: The maximum resident set size (KB) = 1633944 Test 030 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1665,28 +1665,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 142.049180 - 0: The maximum resident set size (KB) = 680552 + 0: The total amount of wall time = 195.170415 + 0: The maximum resident set size (KB) = 669336 Test 031 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 137.588152 - 0: The maximum resident set size (KB) = 612336 + 0: The total amount of wall time = 86.789551 + 0: The maximum resident set size (KB) = 615688 Test 032 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1697,14 +1697,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.745287 - 0: The maximum resident set size (KB) = 675912 + 0: The total amount of wall time = 139.652173 + 0: The maximum resident set size (KB) = 672440 Test 033 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.359381 - 0: The maximum resident set size (KB) = 707444 + 0: The total amount of wall time = 118.552361 + 0: The maximum resident set size (KB) = 714212 Test 034 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.994709 - 0: The maximum resident set size (KB) = 706716 + 0: The total amount of wall time = 119.648723 + 0: The maximum resident set size (KB) = 708632 Test 035 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.016398 - 0: The maximum resident set size (KB) = 1623480 + 0: The total amount of wall time = 144.023057 + 0: The maximum resident set size (KB) = 1634960 Test 036 control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.919462 - 0: The maximum resident set size (KB) = 990112 + 0: The total amount of wall time = 75.752212 + 0: The maximum resident set size (KB) = 980916 Test 037 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.772768 - 0: The maximum resident set size (KB) = 1644040 + 0: The total amount of wall time = 144.657424 + 0: The maximum resident set size (KB) = 1645332 Test 038 control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_restart_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 139.491561 - 0: The maximum resident set size (KB) = 914908 + 0: The total amount of wall time = 78.863684 + 0: The maximum resident set size (KB) = 902316 Test 039 control_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,14 +1991,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.921326 - 0: The maximum resident set size (KB) = 1623868 + 0: The total amount of wall time = 194.617970 + 0: The maximum resident set size (KB) = 1612180 Test 040 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.174575 - 0: The maximum resident set size (KB) = 1704656 + 0: The total amount of wall time = 135.052121 + 0: The maximum resident set size (KB) = 1707792 Test 041 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 281.621151 - 0: The maximum resident set size (KB) = 1633940 + 0: The total amount of wall time = 262.305174 + 0: The maximum resident set size (KB) = 1639688 Test 042 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.866410 - 0: The maximum resident set size (KB) = 1696680 + 0: The total amount of wall time = 239.179925 + 0: The maximum resident set size (KB) = 1703512 Test 043 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.179355 - 0: The maximum resident set size (KB) = 1637424 + 0: The total amount of wall time = 149.858528 + 0: The maximum resident set size (KB) = 1633688 Test 044 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2229,14 +2229,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.239066 - 0: The maximum resident set size (KB) = 1639552 + 0: The total amount of wall time = 169.105737 + 0: The maximum resident set size (KB) = 1633824 Test 045 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2247,28 +2247,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.126528 - 0: The maximum resident set size (KB) = 1232448 + 0: The total amount of wall time = 248.288252 + 0: The maximum resident set size (KB) = 1232288 Test 046 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 144.237149 - 0: The maximum resident set size (KB) = 1215188 + 0: The total amount of wall time = 130.639644 + 0: The maximum resident set size (KB) = 1215156 Test 047 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2279,28 +2279,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.016388 - 0: The maximum resident set size (KB) = 1234004 + 0: The total amount of wall time = 248.336097 + 0: The maximum resident set size (KB) = 1230564 Test 048 regional_control_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_restart_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 143.116954 - 0: The maximum resident set size (KB) = 1209608 + 0: The total amount of wall time = 129.867680 + 0: The maximum resident set size (KB) = 1213020 Test 049 regional_restart_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2311,14 +2311,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.937700 - 0: The maximum resident set size (KB) = 1213712 + 0: The total amount of wall time = 261.755646 + 0: The maximum resident set size (KB) = 1209856 Test 050 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.863335 - 0: The maximum resident set size (KB) = 1152100 + 0: The total amount of wall time = 150.151695 + 0: The maximum resident set size (KB) = 1148848 Test 051 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2344,28 +2344,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 252.761469 - 0: The maximum resident set size (KB) = 1494624 + 0: The total amount of wall time = 244.247081 + 0: The maximum resident set size (KB) = 1485276 Test 052 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 263.481969 - 0: The maximum resident set size (KB) = 1215844 + 0: The total amount of wall time = 248.781917 + 0: The maximum resident set size (KB) = 1213696 Test 053 regional_netcdf_parallel_intel PASS Tries: 2 baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_2dwrtdecomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2376,14 +2376,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.444549 - 0: The maximum resident set size (KB) = 1234196 + 0: The total amount of wall time = 246.643757 + 0: The maximum resident set size (KB) = 1228324 Test 054 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2394,14 +2394,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 323.448314 - 0: The maximum resident set size (KB) = 1096460 + 0: The total amount of wall time = 315.237751 + 0: The maximum resident set size (KB) = 1105328 Test 055 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 407.516879 - 0: The maximum resident set size (KB) = 1392328 + 0: The total amount of wall time = 375.635685 + 0: The maximum resident set size (KB) = 1384644 Test 056 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 203.944132 - 0: The maximum resident set size (KB) = 1313508 + 0: The total amount of wall time = 268.325143 + 0: The maximum resident set size (KB) = 1318792 Test 057 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.588190 - 0: The maximum resident set size (KB) = 1323900 + 0: The total amount of wall time = 391.255471 + 0: The maximum resident set size (KB) = 1324304 Test 058 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2574,14 +2574,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.965844 - 0: The maximum resident set size (KB) = 1556456 + 0: The total amount of wall time = 354.156489 + 0: The maximum resident set size (KB) = 1555952 Test 059 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2620,14 +2620,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.266504 - 0: The maximum resident set size (KB) = 1227932 + 0: The total amount of wall time = 247.675302 + 0: The maximum resident set size (KB) = 1236860 Test 060 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2674,14 +2674,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.710141 - 0: The maximum resident set size (KB) = 1419792 + 0: The total amount of wall time = 375.394360 + 0: The maximum resident set size (KB) = 1418372 Test 061 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.359972 - 0: The maximum resident set size (KB) = 1359304 + 0: The total amount of wall time = 391.120186 + 0: The maximum resident set size (KB) = 1340140 Test 062 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 297.354849 - 0: The maximum resident set size (KB) = 1280720 + 0: The total amount of wall time = 275.508216 + 0: The maximum resident set size (KB) = 1295084 Test 063 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_intel Checking test 064 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 064 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.063579 - 0: The maximum resident set size (KB) = 1351560 + 0: The total amount of wall time = 358.027154 + 0: The maximum resident set size (KB) = 1370224 Test 064 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_intel Checking test 065 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 065 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 378.612258 - 0: The maximum resident set size (KB) = 1189108 + 0: The total amount of wall time = 356.958216 + 0: The maximum resident set size (KB) = 1174204 Test 065 hrrr_control_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.336730 - 0: The maximum resident set size (KB) = 1286844 + 0: The total amount of wall time = 372.786807 + 0: The maximum resident set size (KB) = 1287272 Test 066 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,42 +2990,42 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.857464 - 0: The maximum resident set size (KB) = 1256204 + 0: The total amount of wall time = 333.154056 + 0: The maximum resident set size (KB) = 1258360 Test 067 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 285.448337 - 0: The maximum resident set size (KB) = 1214568 + 0: The total amount of wall time = 266.436656 + 0: The maximum resident set size (KB) = 1213832 Test 068 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_intel Checking test 069 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 289.428973 - 0: The maximum resident set size (KB) = 1075300 + 0: The total amount of wall time = 267.928206 + 0: The maximum resident set size (KB) = 1087688 Test 069 hrrr_control_restart_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.784473 - 0: The maximum resident set size (KB) = 1390052 + 0: The total amount of wall time = 367.156249 + 0: The maximum resident set size (KB) = 1416728 Test 070 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.415703 - 0: The maximum resident set size (KB) = 954208 + 0: The total amount of wall time = 444.810258 + 0: The maximum resident set size (KB) = 950732 Test 071 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 451.097852 - 0: The maximum resident set size (KB) = 1090648 + 0: The total amount of wall time = 432.955945 + 0: The maximum resident set size (KB) = 1096980 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_gf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_gf_intel Checking test 073 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.266174 - 0: The maximum resident set size (KB) = 1397168 + 0: The total amount of wall time = 436.284928 + 0: The maximum resident set size (KB) = 1397348 Test 073 hrrr_gf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_c3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_c3_intel Checking test 074 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3224,14 +3224,14 @@ Checking test 074 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.979525 - 0: The maximum resident set size (KB) = 1423400 + 0: The total amount of wall time = 377.538280 + 0: The maximum resident set size (KB) = 1412972 Test 074 hrrr_c3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3242,14 +3242,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 304.774491 - 0: The maximum resident set size (KB) = 952348 + 0: The total amount of wall time = 296.039329 + 0: The maximum resident set size (KB) = 984796 Test 075 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3260,14 +3260,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 298.918073 - 0: The maximum resident set size (KB) = 976692 + 0: The total amount of wall time = 288.684463 + 0: The maximum resident set size (KB) = 953884 Test 076 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3278,26 +3278,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 166.506668 - 0: The maximum resident set size (KB) = 930224 + 0: The total amount of wall time = 157.494454 + 0: The maximum resident set size (KB) = 929868 Test 077 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 104.655472 - 0: The maximum resident set size (KB) = 853256 + 0: The total amount of wall time = 98.267773 + 0: The maximum resident set size (KB) = 854740 Test 078 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3344,14 +3344,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.714806 - 0: The maximum resident set size (KB) = 1621504 + 0: The total amount of wall time = 132.063174 + 0: The maximum resident set size (KB) = 1624064 Test 079 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3362,14 +3362,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 229.012615 - 0: The maximum resident set size (KB) = 1231100 + 0: The total amount of wall time = 223.366935 + 0: The maximum resident set size (KB) = 1230164 Test 080 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3396,336 +3396,336 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 123.523561 - 0: The maximum resident set size (KB) = 815148 + 0: The total amount of wall time = 126.276861 + 0: The maximum resident set size (KB) = 823248 Test 081 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.773726 - 0: The maximum resident set size (KB) = 813180 + 0: The total amount of wall time = 146.261717 + 0: The maximum resident set size (KB) = 816528 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.526506 - 0: The maximum resident set size (KB) = 825308 + 0: The total amount of wall time = 138.552588 + 0: The maximum resident set size (KB) = 810752 Test 083 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.260771 - 0: The maximum resident set size (KB) = 820816 + 0: The total amount of wall time = 125.821683 + 0: The maximum resident set size (KB) = 828456 Test 084 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.975092 - 0: The maximum resident set size (KB) = 866840 + 0: The total amount of wall time = 191.099863 + 0: The maximum resident set size (KB) = 860384 Test 085 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.467903 - 0: The maximum resident set size (KB) = 862268 + 0: The total amount of wall time = 191.939834 + 0: The maximum resident set size (KB) = 858368 Test 086 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 131.090741 - 0: The maximum resident set size (KB) = 818336 + 0: The total amount of wall time = 127.741116 + 0: The maximum resident set size (KB) = 832788 Test 087 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.494022 - 0: The maximum resident set size (KB) = 861328 + 0: The total amount of wall time = 130.253494 + 0: The maximum resident set size (KB) = 866920 Test 088 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.053585 - 0: The maximum resident set size (KB) = 1648332 + 0: The total amount of wall time = 141.924278 + 0: The maximum resident set size (KB) = 1643788 Test 089 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 841.643758 - 0: The maximum resident set size (KB) = 1226920 + 0: The total amount of wall time = 832.342395 + 0: The maximum resident set size (KB) = 1215772 Test 090 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.007997 - 0: The maximum resident set size (KB) = 1245652 + 0: The total amount of wall time = 224.235595 + 0: The maximum resident set size (KB) = 1227644 Test 091 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.067978 - 0: The maximum resident set size (KB) = 1197844 + 0: The total amount of wall time = 223.262702 + 0: The maximum resident set size (KB) = 1196668 Test 092 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_unified_drag_suite_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.823054 - 0: The maximum resident set size (KB) = 1224356 + 0: The total amount of wall time = 229.602188 + 0: The maximum resident set size (KB) = 1206640 Test 093 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.365565 - 0: The maximum resident set size (KB) = 1327280 + 0: The total amount of wall time = 240.256398 + 0: The maximum resident set size (KB) = 1345348 Test 094 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.796865 - 0: The maximum resident set size (KB) = 1220236 + 0: The total amount of wall time = 229.995337 + 0: The maximum resident set size (KB) = 1220352 Test 095 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_unified_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.583793 - 0: The maximum resident set size (KB) = 1225588 + 0: The total amount of wall time = 233.345340 + 0: The maximum resident set size (KB) = 1227684 Test 096 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.631768 - 0: The maximum resident set size (KB) = 1236452 + 0: The total amount of wall time = 231.872015 + 0: The maximum resident set size (KB) = 1245492 Test 097 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.334889 - 0: The maximum resident set size (KB) = 1210156 + 0: The total amount of wall time = 228.225150 + 0: The maximum resident set size (KB) = 1233072 Test 098 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.904498 - 0: The maximum resident set size (KB) = 1230792 + 0: The total amount of wall time = 224.957906 + 0: The maximum resident set size (KB) = 1219608 Test 099 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.679870 - 0: The maximum resident set size (KB) = 1222092 + 0: The total amount of wall time = 229.141300 + 0: The maximum resident set size (KB) = 1211444 Test 100 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 384.417136 - 0: The maximum resident set size (KB) = 1238056 + 0: The total amount of wall time = 376.983788 + 0: The maximum resident set size (KB) = 1234172 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.076949 - 0: The maximum resident set size (KB) = 1201216 + 0: The total amount of wall time = 223.389988 + 0: The maximum resident set size (KB) = 1196368 Test 102 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.215674 - 0: The maximum resident set size (KB) = 1229404 + 0: The total amount of wall time = 280.203222 + 0: The maximum resident set size (KB) = 1224688 Test 103 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.863194 - 0: The maximum resident set size (KB) = 1234272 + 0: The total amount of wall time = 228.115031 + 0: The maximum resident set size (KB) = 1222536 Test 104 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 203.018290 - 0: The maximum resident set size (KB) = 1258108 + 0: The total amount of wall time = 179.381306 + 0: The maximum resident set size (KB) = 1217668 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn32_phy32_intel Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.978580 - 0: The maximum resident set size (KB) = 1229420 + 0: The total amount of wall time = 308.070291 + 0: The maximum resident set size (KB) = 1214116 Test 106 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_dyn32_phy32_intel Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3844,14 +3844,14 @@ Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.895052 - 0: The maximum resident set size (KB) = 1109784 + 0: The total amount of wall time = 158.413451 + 0: The maximum resident set size (KB) = 1137848 Test 107 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_dyn32_phy32_intel Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3898,14 +3898,14 @@ Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 178.143735 - 0: The maximum resident set size (KB) = 1029584 + 0: The total amount of wall time = 160.439012 + 0: The maximum resident set size (KB) = 1036376 Test 108 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_dyn32_phy32_intel Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3952,14 +3952,14 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.382133 - 0: The maximum resident set size (KB) = 1335308 + 0: The total amount of wall time = 288.676308 + 0: The maximum resident set size (KB) = 1354728 Test 109 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_dyn32_phy32_intel Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4006,14 +4006,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.520412 - 0: The maximum resident set size (KB) = 1068112 + 0: The total amount of wall time = 200.101005 + 0: The maximum resident set size (KB) = 1065016 Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_dyn32_phy32_intel Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4060,14 +4060,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.198066 - 0: The maximum resident set size (KB) = 1082276 + 0: The total amount of wall time = 167.672682 + 0: The maximum resident set size (KB) = 1074504 Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_dyn32_phy32_intel Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4106,42 +4106,42 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.812476 - 0: The maximum resident set size (KB) = 1140368 + 0: The total amount of wall time = 231.656350 + 0: The maximum resident set size (KB) = 1131412 Test 112 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_dyn32_phy32_intel Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.149998 - 0: The maximum resident set size (KB) = 984104 + 0: The total amount of wall time = 82.031432 + 0: The maximum resident set size (KB) = 986312 Test 113 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.443431 - 0: The maximum resident set size (KB) = 915456 + 0: The total amount of wall time = 86.801877 + 0: The maximum resident set size (KB) = 912784 Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4157,40 +4157,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 102.493478 - 0: The maximum resident set size (KB) = 1344036 + 0: The total amount of wall time = 96.096021 + 0: The maximum resident set size (KB) = 1355780 Test 115 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 36.408256 - 0: The maximum resident set size (KB) = 1245796 + 0: The total amount of wall time = 42.315326 + 0: The maximum resident set size (KB) = 1252732 Test 116 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 60.761441 - 0: The maximum resident set size (KB) = 1226096 + 0: The total amount of wall time = 55.329725 + 0: The maximum resident set size (KB) = 1225712 Test 117 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4237,123 +4237,123 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.090104 - 0: The maximum resident set size (KB) = 1275048 + 0: The total amount of wall time = 209.428130 + 0: The maximum resident set size (KB) = 1276128 Test 118 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.839768 - 0: The maximum resident set size (KB) = 1085868 + 0: The total amount of wall time = 223.779469 + 0: The maximum resident set size (KB) = 1087820 Test 119 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.018575 - 0: The maximum resident set size (KB) = 1080032 + 0: The total amount of wall time = 218.235438 + 0: The maximum resident set size (KB) = 1081904 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 695.349280 - 0: The maximum resident set size (KB) = 1387956 + 0: The total amount of wall time = 686.878010 + 0: The maximum resident set size (KB) = 1385836 Test 121 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_2threads_intel Checking test 122 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 397.990521 - 0: The maximum resident set size (KB) = 1286052 + 0: The total amount of wall time = 385.405163 + 0: The maximum resident set size (KB) = 1281300 Test 122 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_radar_tten_debug_intel Checking test 123 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 696.791716 - 0: The maximum resident set size (KB) = 1461912 + 0: The total amount of wall time = 688.751205 + 0: The maximum resident set size (KB) = 1461308 Test 123 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_debug_intel Checking test 124 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.344147 - 0: The maximum resident set size (KB) = 1179928 + 0: The total amount of wall time = 228.794173 + 0: The maximum resident set size (KB) = 1204092 Test 124 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_intel Checking test 125 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 202.169238 - 0: The maximum resident set size (KB) = 1476920 + 0: The total amount of wall time = 193.239643 + 0: The maximum resident set size (KB) = 1475924 Test 125 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_thompson_gfdlsf_intel Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 249.483692 - 0: The maximum resident set size (KB) = 1805940 + 0: The total amount of wall time = 231.665591 + 0: The maximum resident set size (KB) = 1811760 Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_ocn_intel Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4362,14 +4362,14 @@ Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 345.540447 - 0: The maximum resident set size (KB) = 1791632 + 0: The total amount of wall time = 350.675249 + 0: The maximum resident set size (KB) = 1786948 Test 127 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_wav_intel Checking test 128 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4378,14 +4378,14 @@ Checking test 128 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 850.988033 - 0: The maximum resident set size (KB) = 1827888 + 0: The total amount of wall time = 818.580920 + 0: The maximum resident set size (KB) = 1827716 Test 128 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_ocn_wav_intel Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 925.784623 - 0: The maximum resident set size (KB) = 1847280 + 0: The total amount of wall time = 878.981498 + 0: The maximum resident set size (KB) = 1855584 Test 129 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_1nest_atm_intel Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4425,14 +4425,14 @@ Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 280.353722 - 0: The maximum resident set size (KB) = 788160 + 0: The total amount of wall time = 259.240302 + 0: The maximum resident set size (KB) = 787220 Test 130 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_1nest_atm_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_1nest_atm_qr_intel Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 307.254257 - 0: The maximum resident set size (KB) = 606328 + 0: The total amount of wall time = 288.894593 + 0: The maximum resident set size (KB) = 603960 Test 131 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_telescopic_2nests_atm_intel Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4470,14 +4470,14 @@ Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 331.870819 - 0: The maximum resident set size (KB) = 788112 + 0: The total amount of wall time = 301.337411 + 0: The maximum resident set size (KB) = 786488 Test 132 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_1nest_atm_intel Checking test 133 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4524,14 +4524,14 @@ Checking test 133 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 142.590395 - 0: The maximum resident set size (KB) = 463920 + 0: The total amount of wall time = 120.481158 + 0: The maximum resident set size (KB) = 459600 Test 133 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_1nest_atm_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_1nest_atm_qr_intel Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,14 +4578,14 @@ Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.306622 - 0: The maximum resident set size (KB) = 438552 + 0: The total amount of wall time = 154.639927 + 0: The maximum resident set size (KB) = 434000 Test 134 hafs_global_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4667,14 +4667,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 360.953130 - 0: The maximum resident set size (KB) = 554816 + 0: The total amount of wall time = 338.516681 + 0: The maximum resident set size (KB) = 554068 Test 135 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_multiple_4nests_atm_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_multiple_4nests_atm_qr_intel Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4756,14 +4756,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 429.804783 - 0: The maximum resident set size (KB) = 545020 + 0: The total amount of wall time = 404.944285 + 0: The maximum resident set size (KB) = 537336 Test 136 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4772,14 +4772,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 179.449705 - 0: The maximum resident set size (KB) = 795460 + 0: The total amount of wall time = 169.354539 + 0: The maximum resident set size (KB) = 798484 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4801,14 +4801,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.385238 - 0: The maximum resident set size (KB) = 795172 + 0: The total amount of wall time = 157.518869 + 0: The maximum resident set size (KB) = 791656 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4830,14 +4830,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 196.693479 - 0: The maximum resident set size (KB) = 616424 + 0: The total amount of wall time = 185.697033 + 0: The maximum resident set size (KB) = 614784 Test 139 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4846,42 +4846,42 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.973633 - 0: The maximum resident set size (KB) = 843512 + 0: The total amount of wall time = 215.105662 + 0: The maximum resident set size (KB) = 848300 Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_storm_following_1nest_atm_intel Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 50.529706 - 0: The maximum resident set size (KB) = 473220 + 0: The total amount of wall time = 49.105282 + 0: The maximum resident set size (KB) = 470616 Test 141 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 620.086693 - 0: The maximum resident set size (KB) = 850144 + 0: The total amount of wall time = 594.426803 + 0: The maximum resident set size (KB) = 845028 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4892,14 +4892,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 970.600724 - 0: The maximum resident set size (KB) = 901296 + 0: The total amount of wall time = 909.170439 + 0: The maximum resident set size (KB) = 901828 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4907,14 +4907,14 @@ Checking test 144 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 284.673573 - 0: The maximum resident set size (KB) = 1776844 + 0: The total amount of wall time = 282.325719 + 0: The maximum resident set size (KB) = 1776244 Test 144 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4922,131 +4922,131 @@ Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 290.482758 - 0: The maximum resident set size (KB) = 1761852 + 0: The total amount of wall time = 285.747932 + 0: The maximum resident set size (KB) = 1756812 Test 145 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_datm_cdeps_intel Checking test 146 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 980.007697 - 0: The maximum resident set size (KB) = 1341512 + 0: The total amount of wall time = 975.437898 + 0: The maximum resident set size (KB) = 1342368 Test 146 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_intel Checking test 147 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.869653 - 0: The maximum resident set size (KB) = 1138000 + 0: The total amount of wall time = 124.759492 + 0: The maximum resident set size (KB) = 1140596 Test 147 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_restart_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_restart_cfsr_intel Checking test 148 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 78.239139 - 0: The maximum resident set size (KB) = 1070796 + 0: The total amount of wall time = 76.164190 + 0: The maximum resident set size (KB) = 1094280 Test 148 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_gefs_intel Checking test 149 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.465147 - 0: The maximum resident set size (KB) = 1003296 + 0: The total amount of wall time = 119.522337 + 0: The maximum resident set size (KB) = 1003200 Test 149 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_iau_gefs_intel Checking test 150 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.189881 - 0: The maximum resident set size (KB) = 1006132 + 0: The total amount of wall time = 122.536476 + 0: The maximum resident set size (KB) = 1000432 Test 150 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_stochy_gefs_intel Checking test 151 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.143471 - 0: The maximum resident set size (KB) = 1015232 + 0: The total amount of wall time = 123.138792 + 0: The maximum resident set size (KB) = 1008492 Test 151 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_ciceC_cfsr_intel Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.181473 - 0: The maximum resident set size (KB) = 1130580 + 0: The total amount of wall time = 122.941341 + 0: The maximum resident set size (KB) = 1117040 Test 152 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_bulk_cfsr_intel Checking test 153 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.902977 - 0: The maximum resident set size (KB) = 1126500 + 0: The total amount of wall time = 125.689653 + 0: The maximum resident set size (KB) = 1120560 Test 153 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_bulk_gefs_intel Checking test 154 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.186639 - 0: The maximum resident set size (KB) = 1002964 + 0: The total amount of wall time = 118.128071 + 0: The maximum resident set size (KB) = 1006296 Test 154 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_mx025_cfsr_intel Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5055,14 +5055,14 @@ Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 318.641262 - 0: The maximum resident set size (KB) = 1140476 + 0: The total amount of wall time = 315.082839 + 0: The maximum resident set size (KB) = 1149588 Test 155 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_mx025_gefs_intel Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5071,77 +5071,77 @@ Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 310.204104 - 0: The maximum resident set size (KB) = 1140976 + 0: The total amount of wall time = 313.011823 + 0: The maximum resident set size (KB) = 1139328 Test 156 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_multiple_files_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_multiple_files_cfsr_intel Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.733795 - 0: The maximum resident set size (KB) = 1136068 + 0: The total amount of wall time = 122.703312 + 0: The maximum resident set size (KB) = 1127440 Test 157 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_3072x1536_cfsr_intel Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 179.397217 - 0: The maximum resident set size (KB) = 2365632 + 0: The total amount of wall time = 174.387162 + 0: The maximum resident set size (KB) = 2415776 Test 158 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_gfs_intel Checking test 159 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 179.932499 - 0: The maximum resident set size (KB) = 2430336 + 0: The total amount of wall time = 176.497446 + 0: The maximum resident set size (KB) = 2416980 Test 159 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_debug_cfsr_intel Checking test 160 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 287.686826 - 0: The maximum resident set size (KB) = 1061124 + 0: The total amount of wall time = 290.705781 + 0: The maximum resident set size (KB) = 1065256 Test 160 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_faster_intel Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.820894 - 0: The maximum resident set size (KB) = 1144432 + 0: The total amount of wall time = 124.739903 + 0: The maximum resident set size (KB) = 1140604 Test 161 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_lnd_gswp3_intel Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5150,14 +5150,14 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.154590 - 0: The maximum resident set size (KB) = 337232 + 0: The total amount of wall time = 8.421557 + 0: The maximum resident set size (KB) = 329960 Test 162 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_lnd_gswp3_rst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_lnd_gswp3_rst_intel Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5166,14 +5166,14 @@ Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.050747 - 0: The maximum resident set size (KB) = 337396 + 0: The total amount of wall time = 9.495476 + 0: The maximum resident set size (KB) = 337168 Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_atmlnd_sbs_intel Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5258,14 +5258,14 @@ Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 184.802529 - 0: The maximum resident set size (KB) = 1689312 + 0: The total amount of wall time = 181.908748 + 0: The maximum resident set size (KB) = 1692284 Test 164 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmwav_control_noaero_p8_intel Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5308,14 +5308,14 @@ Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 86.855014 - 0: The maximum resident set size (KB) = 1673108 + 0: The total amount of wall time = 84.418759 + 0: The maximum resident set size (KB) = 1673064 Test 165 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_atmwav_intel Checking test 166 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 166 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 77.295021 - 0: The maximum resident set size (KB) = 696924 + 0: The total amount of wall time = 79.541883 + 0: The maximum resident set size (KB) = 686832 Test 166 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_intel Checking test 167 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.637872 - 0: The maximum resident set size (KB) = 1779384 + 0: The total amount of wall time = 200.399354 + 0: The maximum resident set size (KB) = 1767960 Test 167 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_rad_intel Checking test 168 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5461,14 @@ Checking test 168 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.225235 - 0: The maximum resident set size (KB) = 1798948 + 0: The total amount of wall time = 245.786105 + 0: The maximum resident set size (KB) = 1798744 Test 168 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_rad_micro_intel Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5512,14 +5512,14 @@ Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.365180 - 0: The maximum resident set size (KB) = 1810632 + 0: The total amount of wall time = 249.376974 + 0: The maximum resident set size (KB) = 1810748 Test 169 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_intel Checking test 170 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5535,14 +5535,14 @@ Checking test 170 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 574.404578 - 0: The maximum resident set size (KB) = 5492488 + 0: The total amount of wall time = 569.165208 + 0: The maximum resident set size (KB) = 5465640 Test 170 regional_atmaq_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_debug_intel Checking test 171 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5556,14 +5556,14 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 954.260845 - 0: The maximum resident set size (KB) = 5002036 + 0: The total amount of wall time = 981.515014 + 0: The maximum resident set size (KB) = 4986236 Test 171 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_faster_intel Checking test 172 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5579,14 +5579,14 @@ Checking test 172 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 467.093629 - 0: The maximum resident set size (KB) = 5510144 + 0: The total amount of wall time = 492.784221 + 0: The maximum resident set size (KB) = 5498080 Test 172 regional_atmaq_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c48_gnu Checking test 173 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5625,14 +5625,14 @@ Checking test 173 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 580.870684 -The maximum resident set size (KB) = 759544 +The total amount of wall time = 555.496377 +The maximum resident set size (KB) = 761748 Test 173 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_gnu Checking test 174 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5643,14 +5643,14 @@ Checking test 174 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 124.739823 -The maximum resident set size (KB) = 566136 +The total amount of wall time = 123.290551 +The maximum resident set size (KB) = 568328 Test 174 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_gnu Checking test 175 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5661,14 +5661,14 @@ Checking test 175 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 210.025820 -The maximum resident set size (KB) = 570128 +The total amount of wall time = 208.317298 +The maximum resident set size (KB) = 574080 Test 175 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_gnu Checking test 176 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5715,14 +5715,14 @@ Checking test 176 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.913272 -The maximum resident set size (KB) = 1322904 +The total amount of wall time = 216.820713 +The maximum resident set size (KB) = 1321464 Test 176 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_flake_gnu Checking test 177 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5733,14 +5733,14 @@ Checking test 177 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 251.935983 -The maximum resident set size (KB) = 605352 +The total amount of wall time = 247.181814 +The maximum resident set size (KB) = 611032 Test 177 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_gnu Checking test 178 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5787,14 +5787,14 @@ Checking test 178 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 462.067380 -The maximum resident set size (KB) = 917036 +The total amount of wall time = 448.284641 +The maximum resident set size (KB) = 915220 Test 178 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_decomp_gnu Checking test 179 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5841,14 +5841,14 @@ Checking test 179 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 465.677072 -The maximum resident set size (KB) = 916980 +The total amount of wall time = 440.094117 +The maximum resident set size (KB) = 914908 Test 179 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_gnu Checking test 180 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5895,14 +5895,14 @@ Checking test 180 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.054323 -The maximum resident set size (KB) = 981572 +The total amount of wall time = 403.627479 +The maximum resident set size (KB) = 986560 Test 180 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_gnu Checking test 181 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -5941,14 +5941,14 @@ Checking test 181 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.283332 -The maximum resident set size (KB) = 780944 +The total amount of wall time = 223.535963 +The maximum resident set size (KB) = 785380 Test 181 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_gnu Checking test 182 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5995,14 +5995,14 @@ Checking test 182 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 461.829518 -The maximum resident set size (KB) = 912080 +The total amount of wall time = 448.496406 +The maximum resident set size (KB) = 913948 Test 182 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_decomp_gnu Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6049,14 +6049,14 @@ Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 473.807420 -The maximum resident set size (KB) = 914704 +The total amount of wall time = 454.179726 +The maximum resident set size (KB) = 920256 Test 183 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_sfcdiff_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_restart_gnu Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6095,14 +6095,14 @@ Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 335.228683 -The maximum resident set size (KB) = 789240 +The total amount of wall time = 324.923635 +The maximum resident set size (KB) = 793948 Test 184 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_gnu Checking test 185 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6149,14 +6149,14 @@ Checking test 185 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 457.357470 -The maximum resident set size (KB) = 913124 +The total amount of wall time = 432.696926 +The maximum resident set size (KB) = 910496 Test 185 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_gnu Checking test 186 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6203,14 +6203,14 @@ Checking test 186 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 453.377946 -The maximum resident set size (KB) = 923044 +The total amount of wall time = 431.377885 +The maximum resident set size (KB) = 922296 Test 186 hrrr_control_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_gnu Checking test 187 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6257,14 +6257,14 @@ Checking test 187 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 411.595269 -The maximum resident set size (KB) = 972276 +The total amount of wall time = 381.858215 +The maximum resident set size (KB) = 971500 Test 187 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_gnu Checking test 188 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6311,42 +6311,42 @@ Checking test 188 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 450.085048 -The maximum resident set size (KB) = 912772 +The total amount of wall time = 429.982448 +The maximum resident set size (KB) = 910700 Test 188 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_gnu Checking test 189 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 333.393806 -The maximum resident set size (KB) = 738300 +The total amount of wall time = 316.642832 +The maximum resident set size (KB) = 739972 Test 189 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_gnu Checking test 190 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 326.440217 -The maximum resident set size (KB) = 643328 +The total amount of wall time = 323.477670 +The maximum resident set size (KB) = 648584 Test 190 hrrr_control_restart_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_gnu Checking test 191 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6393,14 +6393,14 @@ Checking test 191 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 451.275261 -The maximum resident set size (KB) = 915732 +The total amount of wall time = 440.611591 +The maximum resident set size (KB) = 911772 Test 191 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_gf_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_gf_gnu Checking test 192 hrrr_gf_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6447,196 +6447,196 @@ Checking test 192 hrrr_gf_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 464.665212 -The maximum resident set size (KB) = 920340 +The total amount of wall time = 446.046854 +The maximum resident set size (KB) = 915516 Test 192 hrrr_gf_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_diag_debug_gnu Checking test 193 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 64.710697 -The maximum resident set size (KB) = 606452 +The total amount of wall time = 68.659211 +The maximum resident set size (KB) = 609164 Test 193 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_debug_gnu Checking test 194 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 373.156934 -The maximum resident set size (KB) = 857112 +The total amount of wall time = 352.305905 +The maximum resident set size (KB) = 856032 Test 194 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_gnu Checking test 195 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 109.290389 -The maximum resident set size (KB) = 929576 +The total amount of wall time = 108.298342 +The maximum resident set size (KB) = 924656 Test 195 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_gnu Checking test 196 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.838026 -The maximum resident set size (KB) = 925752 +The total amount of wall time = 108.800899 +The maximum resident set size (KB) = 924152 Test 196 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_diag_debug_gnu Checking test 197 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 116.645447 -The maximum resident set size (KB) = 1015832 +The total amount of wall time = 116.549116 +The maximum resident set size (KB) = 1007056 Test 197 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.004711 -The maximum resident set size (KB) = 926300 +The total amount of wall time = 172.530071 +The maximum resident set size (KB) = 925220 Test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_progcld_thompson_debug_gnu Checking test 199 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.234738 -The maximum resident set size (KB) = 932248 +The total amount of wall time = 106.425843 +The maximum resident set size (KB) = 922956 Test 199 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_debug_gnu Checking test 200 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.687889 -The maximum resident set size (KB) = 927700 +The total amount of wall time = 104.801435 +The maximum resident set size (KB) = 921188 Test 200 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_debug_gnu Checking test 201 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 64.802039 -The maximum resident set size (KB) = 560192 +The total amount of wall time = 60.163142 +The maximum resident set size (KB) = 563140 Test 201 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_debug_gnu Checking test 202 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 69.088627 -The maximum resident set size (KB) = 556748 +The total amount of wall time = 66.011540 +The maximum resident set size (KB) = 554784 Test 202 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_debug_p8_gnu Checking test 203 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 68.077800 -The maximum resident set size (KB) = 1309212 +The total amount of wall time = 69.602261 +The maximum resident set size (KB) = 1310840 Test 203 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_flake_debug_gnu Checking test 204 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 112.723264 -The maximum resident set size (KB) = 927576 +The total amount of wall time = 105.020167 +The maximum resident set size (KB) = 926008 Test 204 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_clm_lake_debug_gnu Checking test 205 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 126.563820 -The maximum resident set size (KB) = 931080 +The total amount of wall time = 119.170152 +The maximum resident set size (KB) = 925712 Test 205 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn32_phy32_gnu Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6683,14 +6683,14 @@ Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 442.453157 -The maximum resident set size (KB) = 770876 +The total amount of wall time = 424.991464 +The maximum resident set size (KB) = 772952 Test 206 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_dyn32_phy32_gnu Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6737,14 +6737,14 @@ Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.973250 -The maximum resident set size (KB) = 771508 +The total amount of wall time = 219.543224 +The maximum resident set size (KB) = 773572 Test 207 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_qr_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_dyn32_phy32_gnu Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6791,14 +6791,14 @@ Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 230.751702 -The maximum resident set size (KB) = 779444 +The total amount of wall time = 221.233412 +The maximum resident set size (KB) = 781324 Test 208 hrrr_control_qr_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_dyn32_phy32_gnu Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6845,14 +6845,14 @@ Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.433127 -The maximum resident set size (KB) = 814560 +The total amount of wall time = 380.906292 +The maximum resident set size (KB) = 820700 Test 209 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_dyn32_phy32_gnu Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6899,14 +6899,14 @@ Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.648219 -The maximum resident set size (KB) = 804892 +The total amount of wall time = 192.760134 +The maximum resident set size (KB) = 805640 Test 210 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_dyn32_phy32_gnu Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6953,14 +6953,14 @@ Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 232.495230 -The maximum resident set size (KB) = 771048 +The total amount of wall time = 217.698397 +The maximum resident set size (KB) = 771968 Test 211 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_dyn32_phy32_gnu Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6999,42 +6999,42 @@ Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.722419 -The maximum resident set size (KB) = 687372 +The total amount of wall time = 314.596422 +The maximum resident set size (KB) = 688640 Test 212 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_dyn32_phy32_gnu Checking test 213 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 111.199018 -The maximum resident set size (KB) = 648536 +The total amount of wall time = 108.369323 +The maximum resident set size (KB) = 646528 Test 213 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_restart_qr_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_dyn32_phy32_gnu Checking test 214 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 113.793200 -The maximum resident set size (KB) = 608792 +The total amount of wall time = 111.646226 +The maximum resident set size (KB) = 615388 Test 214 hrrr_control_restart_qr_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_control_gnu Checking test 215 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7050,40 +7050,40 @@ Checking test 215 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 162.721879 -The maximum resident set size (KB) = 980880 +The total amount of wall time = 141.700548 +The maximum resident set size (KB) = 980728 Test 215 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_2threads_gnu Checking test 216 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 55.263003 -The maximum resident set size (KB) = 985820 +The total amount of wall time = 54.186570 +The maximum resident set size (KB) = 987316 Test 216 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_restart_mismatch_gnu Checking test 217 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 79.036425 -The maximum resident set size (KB) = 639268 +The total amount of wall time = 81.441142 +The maximum resident set size (KB) = 643064 Test 217 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_gnu Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7130,98 +7130,98 @@ Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.962564 -The maximum resident set size (KB) = 795628 +The total amount of wall time = 248.041389 +The maximum resident set size (KB) = 793760 Test 218 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_dyn32_phy32_gnu Checking test 219 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.778306 -The maximum resident set size (KB) = 784900 +The total amount of wall time = 104.666017 +The maximum resident set size (KB) = 782284 Test 219 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_dyn32_phy32_gnu Checking test 220 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 105.575391 -The maximum resident set size (KB) = 783924 +The total amount of wall time = 102.596287 +The maximum resident set size (KB) = 786280 Test 220 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_gnu Checking test 221 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 316.238245 -The maximum resident set size (KB) = 1003868 +The total amount of wall time = 315.161896 +The maximum resident set size (KB) = 995380 Test 221 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_debug_2threads_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_2threads_gnu Checking test 222 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.353554 -The maximum resident set size (KB) = 1007764 +The total amount of wall time = 184.496169 +The maximum resident set size (KB) = 1010304 Test 222 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_radar_tten_debug_gnu Checking test 223 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.378766 -The maximum resident set size (KB) = 1064904 +The total amount of wall time = 306.933637 +The maximum resident set size (KB) = 1064956 Test 223 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/rap_control_dyn64_phy32_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_debug_gnu Checking test 224 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.865585 -The maximum resident set size (KB) = 804760 +The total amount of wall time = 109.245545 +The maximum resident set size (KB) = 803912 Test 224 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_gnu Checking test 225 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7286,14 +7286,14 @@ Checking test 225 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 410.104496 -The maximum resident set size (KB) = 1593800 +The total amount of wall time = 407.597472 +The maximum resident set size (KB) = 1593752 Test 225 cpld_control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_nowave_noaero_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_nowave_noaero_p8_gnu Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7355,14 +7355,14 @@ Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 277.099444 -The maximum resident set size (KB) = 1427348 +The total amount of wall time = 276.402982 +The maximum resident set size (KB) = 1429220 Test 226 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_p8_gnu Checking test 227 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7415,14 +7415,14 @@ Checking test 227 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 208.317314 -The maximum resident set size (KB) = 1600500 +The total amount of wall time = 211.638702 +The maximum resident set size (KB) = 1605960 Test 227 cpld_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_control_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_pdlib_p8_gnu Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7486,14 +7486,14 @@ Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 984.394206 -The maximum resident set size (KB) = 1401824 +The total amount of wall time = 962.045564 +The maximum resident set size (KB) = 1403168 Test 228 cpld_control_pdlib_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/cpld_debug_pdlib_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_pdlib_p8_gnu Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -7545,25 +7545,25 @@ Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 531.262525 -The maximum resident set size (KB) = 1406552 +The total amount of wall time = 522.644289 +The maximum resident set size (KB) = 1407520 Test 229 cpld_debug_pdlib_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1713712/datm_cdeps_control_cfsr_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_gnu Checking test 230 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.631158 -The maximum resident set size (KB) = 753504 +The total amount of wall time = 135.967472 +The maximum resident set size (KB) = 752760 Test 230 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sun Sep 24 10:45:39 CDT 2023 -Elapsed time: 01h:17m:44s. Have a nice day! +Thu Sep 28 09:20:09 AM CDT 2023 +Elapsed time: 01h:17m:32s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index fa9b4fff3f..181be6319e 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Sat Sep 23 03:42:08 UTC 2023 +Thu Sep 28 05:53:03 UTC 2023 Start Regression test -Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 +Testing UFSWM Hash: 5bec6063795438c3a8bfddee98bf0930b6694e44 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 296 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1901 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1708 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1791 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1789 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1757 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 139 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1748 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1845 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2441 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1759 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1901 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1812 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1840 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 287 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1952 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2079 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 299 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1990 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 315 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1894 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1823 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1773 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1747 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1848 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2484 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 252 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1836 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 290 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1993 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 310 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5471 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2069 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.835880 - 0: The maximum resident set size (KB) = 1779296 + 0: The total amount of wall time = 591.758791 + 0: The maximum resident set size (KB) = 1738432 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.309531 - 0: The maximum resident set size (KB) = 1611748 + 0: The total amount of wall time = 437.227310 + 0: The maximum resident set size (KB) = 1606228 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.025805 - 0: The maximum resident set size (KB) = 1804356 + 0: The total amount of wall time = 562.196086 + 0: The maximum resident set size (KB) = 1787744 Test 003 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.693928 - 0: The maximum resident set size (KB) = 1713820 + 0: The total amount of wall time = 278.487793 + 0: The maximum resident set size (KB) = 1689552 Test 004 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.239092 - 0: The maximum resident set size (KB) = 1794972 + 0: The total amount of wall time = 527.639741 + 0: The maximum resident set size (KB) = 1813220 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.606479 - 0: The maximum resident set size (KB) = 1530740 + 0: The total amount of wall time = 341.014648 + 0: The maximum resident set size (KB) = 1519448 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.331991 - 0: The maximum resident set size (KB) = 2191268 + 0: The total amount of wall time = 471.501513 + 0: The maximum resident set size (KB) = 2167128 Test 007 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.994175 - 0: The maximum resident set size (KB) = 1804924 + 0: The total amount of wall time = 520.098479 + 0: The maximum resident set size (KB) = 1809396 Test 008 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_mpi_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.592158 - 0: The maximum resident set size (KB) = 1774304 + 0: The total amount of wall time = 422.892240 + 0: The maximum resident set size (KB) = 1741236 Test 009 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.171121 - 0: The maximum resident set size (KB) = 1818528 + 0: The total amount of wall time = 497.270859 + 0: The maximum resident set size (KB) = 1802856 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.302588 - 0: The maximum resident set size (KB) = 1639284 + 0: The total amount of wall time = 469.803045 + 0: The maximum resident set size (KB) = 1635448 Test 011 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_nowave_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +839,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 343.353077 - 0: The maximum resident set size (KB) = 1690180 + 0: The total amount of wall time = 369.963114 + 0: The maximum resident set size (KB) = 1686268 Test 012 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 675.357518 - 0: The maximum resident set size (KB) = 1811992 + 0: The total amount of wall time = 702.406593 + 0: The maximum resident set size (KB) = 1809184 Test 013 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.593962 - 0: The maximum resident set size (KB) = 1637532 + 0: The total amount of wall time = 469.145907 + 0: The maximum resident set size (KB) = 1668028 Test 014 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 403.095973 - 0: The maximum resident set size (KB) = 1688984 + 0: The total amount of wall time = 395.630346 + 0: The maximum resident set size (KB) = 1682856 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 824.871318 - 0: The maximum resident set size (KB) = 2787504 + 0: The total amount of wall time = 802.314427 + 0: The maximum resident set size (KB) = 2778864 Test 016 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.782334 - 0: The maximum resident set size (KB) = 1784936 + 0: The total amount of wall time = 490.824540 + 0: The maximum resident set size (KB) = 1800624 Test 017 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.187725 - 0: The maximum resident set size (KB) = 635992 + 0: The total amount of wall time = 386.691053 + 0: The maximum resident set size (KB) = 637700 Test 018 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,17 +1208,17 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 236.436797 - 0: The maximum resident set size (KB) = 586376 + 0: The total amount of wall time = 226.931651 + 0: The maximum resident set size (KB) = 583636 Test 019 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK @@ -1230,14 +1230,14 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 258.827746 - 0: The maximum resident set size (KB) = 587956 + 0: The total amount of wall time = 242.170146 + 0: The maximum resident set size (KB) = 586080 Test 020 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,14 +1248,14 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.579467 - 0: The maximum resident set size (KB) = 582020 + 0: The total amount of wall time = 193.076560 + 0: The maximum resident set size (KB) = 584228 Test 021 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.174442 - 0: The maximum resident set size (KB) = 580636 + 0: The total amount of wall time = 190.159746 + 0: The maximum resident set size (KB) = 587292 Test 022 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 591.821780 -0: The maximum resident set size (KB) = 806828 +0: The total amount of wall time = 599.829040 +0: The maximum resident set size (KB) = 807428 Test 023 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 730.135202 - 0: The maximum resident set size (KB) = 709440 + 0: The total amount of wall time = 782.735142 + 0: The maximum resident set size (KB) = 703088 Test 024 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 940.632241 - 0: The maximum resident set size (KB) = 1174684 + 0: The total amount of wall time = 1014.471976 + 0: The maximum resident set size (KB) = 1169136 Test 025 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 811.397498 - 0: The maximum resident set size (KB) = 1307000 + 0: The total amount of wall time = 868.559612 + 0: The maximum resident set size (KB) = 1295156 Test 026 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.320740 - 0: The maximum resident set size (KB) = 586252 + 0: The total amount of wall time = 124.439480 + 0: The maximum resident set size (KB) = 589784 Test 027 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 65.260788 - 0: The maximum resident set size (KB) = 463980 + 0: The total amount of wall time = 84.840916 + 0: The maximum resident set size (KB) = 467572 Test 028 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.747722 - 0: The maximum resident set size (KB) = 590144 + 0: The total amount of wall time = 123.180022 + 0: The maximum resident set size (KB) = 596064 Test 029 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.973491 - 0: The maximum resident set size (KB) = 583816 + 0: The total amount of wall time = 232.742173 + 0: The maximum resident set size (KB) = 585444 Test 030 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.264554 - 0: The maximum resident set size (KB) = 576328 + 0: The total amount of wall time = 221.890669 + 0: The maximum resident set size (KB) = 583660 Test 031 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.569112 - 0: The maximum resident set size (KB) = 1561128 + 0: The total amount of wall time = 230.971662 + 0: The maximum resident set size (KB) = 1548116 Test 032 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.879762 - 0: The maximum resident set size (KB) = 833868 + 0: The total amount of wall time = 131.681929 + 0: The maximum resident set size (KB) = 834084 Test 033 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.241488 - 0: The maximum resident set size (KB) = 1556268 + 0: The total amount of wall time = 239.996411 + 0: The maximum resident set size (KB) = 1559472 Test 034 control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 125.847487 - 0: The maximum resident set size (KB) = 800824 + 0: The total amount of wall time = 130.809103 + 0: The maximum resident set size (KB) = 800820 Test 035 control_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.880571 - 0: The maximum resident set size (KB) = 1548300 + 0: The total amount of wall time = 244.521441 + 0: The maximum resident set size (KB) = 1542092 Test 036 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.406966 - 0: The maximum resident set size (KB) = 1645980 + 0: The total amount of wall time = 230.316348 + 0: The maximum resident set size (KB) = 1635244 Test 037 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 431.777122 - 0: The maximum resident set size (KB) = 1547872 + 0: The total amount of wall time = 438.747862 + 0: The maximum resident set size (KB) = 1551804 Test 038 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.151179 - 0: The maximum resident set size (KB) = 1624604 + 0: The total amount of wall time = 357.025960 + 0: The maximum resident set size (KB) = 1611632 Test 039 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.852864 - 0: The maximum resident set size (KB) = 1563060 + 0: The total amount of wall time = 287.107694 + 0: The maximum resident set size (KB) = 1552460 Test 040 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.173023 - 0: The maximum resident set size (KB) = 1562628 + 0: The total amount of wall time = 308.717286 + 0: The maximum resident set size (KB) = 1564084 Test 041 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 404.136555 - 0: The maximum resident set size (KB) = 992828 + 0: The total amount of wall time = 469.205777 + 0: The maximum resident set size (KB) = 994932 Test 042 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 203.397016 - 0: The maximum resident set size (KB) = 996260 + 0: The total amount of wall time = 228.576812 + 0: The maximum resident set size (KB) = 993168 Test 043 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.594483 - 0: The maximum resident set size (KB) = 994612 + 0: The total amount of wall time = 483.048891 + 0: The maximum resident set size (KB) = 999284 Test 044 regional_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.384904 - 0: The maximum resident set size (KB) = 989060 + 0: The total amount of wall time = 214.960561 + 0: The maximum resident set size (KB) = 984840 Test 045 regional_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.121370 - 0: The maximum resident set size (KB) = 986216 + 0: The total amount of wall time = 459.307345 + 0: The maximum resident set size (KB) = 990664 Test 046 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 239.690260 - 0: The maximum resident set size (KB) = 977852 + 0: The total amount of wall time = 293.700915 + 0: The maximum resident set size (KB) = 978116 Test 047 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 392.021932 - 0: The maximum resident set size (KB) = 1001352 + 0: The total amount of wall time = 442.882323 + 0: The maximum resident set size (KB) = 990180 Test 048 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_2dwrtdecomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 396.207204 - 0: The maximum resident set size (KB) = 996964 + 0: The total amount of wall time = 409.701432 + 0: The maximum resident set size (KB) = 996092 Test 049 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 586.894061 - 0: The maximum resident set size (KB) = 1081564 + 0: The total amount of wall time = 649.083756 + 0: The maximum resident set size (KB) = 1076576 Test 050 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 316.581777 - 0: The maximum resident set size (KB) = 1115436 + 0: The total amount of wall time = 326.893876 + 0: The maximum resident set size (KB) = 1116036 Test 051 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 629.288173 - 0: The maximum resident set size (KB) = 1028584 + 0: The total amount of wall time = 681.946530 + 0: The maximum resident set size (KB) = 1041028 Test 052 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 551.804402 - 0: The maximum resident set size (KB) = 1161928 + 0: The total amount of wall time = 604.873894 + 0: The maximum resident set size (KB) = 1154668 Test 053 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 297.738282 - 0: The maximum resident set size (KB) = 1008808 + 0: The total amount of wall time = 348.807560 + 0: The maximum resident set size (KB) = 1001532 Test 054 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 587.047488 - 0: The maximum resident set size (KB) = 1084244 + 0: The total amount of wall time = 646.223218 + 0: The maximum resident set size (KB) = 1074940 Test 055 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 626.112856 - 0: The maximum resident set size (KB) = 1044140 + 0: The total amount of wall time = 684.797397 + 0: The maximum resident set size (KB) = 1034740 Test 056 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.318572 - 0: The maximum resident set size (KB) = 1019904 + 0: The total amount of wall time = 490.215354 + 0: The maximum resident set size (KB) = 1015284 Test 057 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 562.879633 - 0: The maximum resident set size (KB) = 1026672 + 0: The total amount of wall time = 623.275061 + 0: The maximum resident set size (KB) = 1025152 Test 058 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 567.456182 - 0: The maximum resident set size (KB) = 965476 + 0: The total amount of wall time = 588.372410 + 0: The maximum resident set size (KB) = 963124 Test 059 hrrr_control_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 586.436940 - 0: The maximum resident set size (KB) = 978364 + 0: The total amount of wall time = 630.477743 + 0: The maximum resident set size (KB) = 979244 Test 060 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 529.062958 - 0: The maximum resident set size (KB) = 1023784 + 0: The total amount of wall time = 581.514646 + 0: The maximum resident set size (KB) = 1025848 Test 061 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 419.277727 - 0: The maximum resident set size (KB) = 963392 + 0: The total amount of wall time = 447.516306 + 0: The maximum resident set size (KB) = 964200 Test 062 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 424.559276 - 0: The maximum resident set size (KB) = 873956 + 0: The total amount of wall time = 498.766620 + 0: The maximum resident set size (KB) = 881764 Test 063 hrrr_control_restart_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 582.107687 - 0: The maximum resident set size (KB) = 1040292 + 0: The total amount of wall time = 635.898588 + 0: The maximum resident set size (KB) = 1047784 Test 064 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 708.025331 - 0: The maximum resident set size (KB) = 676488 + 0: The total amount of wall time = 749.085835 + 0: The maximum resident set size (KB) = 674780 Test 065 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,14 +2834,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 700.568159 - 0: The maximum resident set size (KB) = 746552 + 0: The total amount of wall time = 723.181120 + 0: The maximum resident set size (KB) = 741120 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_gf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 596.417874 - 0: The maximum resident set size (KB) = 1067820 + 0: The total amount of wall time = 638.835370 + 0: The maximum resident set size (KB) = 1067380 Test 067 hrrr_gf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_c3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 596.174777 - 0: The maximum resident set size (KB) = 1078892 + 0: The total amount of wall time = 638.030572 + 0: The maximum resident set size (KB) = 1064780 Test 068 hrrr_c3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2960,14 +2960,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 517.562696 - 0: The maximum resident set size (KB) = 679212 + 0: The total amount of wall time = 532.405689 + 0: The maximum resident set size (KB) = 681972 Test 069 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 508.267355 - 0: The maximum resident set size (KB) = 683052 + 0: The total amount of wall time = 529.606918 + 0: The maximum resident set size (KB) = 691060 Test 070 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2996,26 +2996,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 312.373944 - 0: The maximum resident set size (KB) = 676508 + 0: The total amount of wall time = 345.828814 + 0: The maximum resident set size (KB) = 677916 Test 071 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 149.238540 - 0: The maximum resident set size (KB) = 550488 + 0: The total amount of wall time = 201.902285 + 0: The maximum resident set size (KB) = 545620 Test 072 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3062,14 +3062,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.472995 - 0: The maximum resident set size (KB) = 1549596 + 0: The total amount of wall time = 232.194920 + 0: The maximum resident set size (KB) = 1550804 Test 073 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3080,14 +3080,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.612997 - 0: The maximum resident set size (KB) = 996532 + 0: The total amount of wall time = 436.591498 + 0: The maximum resident set size (KB) = 990440 Test 074 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3114,348 +3114,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 192.533536 - 0: The maximum resident set size (KB) = 736588 + 0: The total amount of wall time = 211.821766 + 0: The maximum resident set size (KB) = 745752 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.185644 - 0: The maximum resident set size (KB) = 738348 + 0: The total amount of wall time = 198.764852 + 0: The maximum resident set size (KB) = 743584 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.990588 - 0: The maximum resident set size (KB) = 742424 + 0: The total amount of wall time = 249.092563 + 0: The maximum resident set size (KB) = 743624 Test 077 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.200242 - 0: The maximum resident set size (KB) = 742212 + 0: The total amount of wall time = 238.771999 + 0: The maximum resident set size (KB) = 745564 Test 078 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.313301 - 0: The maximum resident set size (KB) = 789720 + 0: The total amount of wall time = 300.924284 + 0: The maximum resident set size (KB) = 785232 Test 079 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.528575 - 0: The maximum resident set size (KB) = 786524 + 0: The total amount of wall time = 321.153359 + 0: The maximum resident set size (KB) = 787304 Test 080 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.482241 - 0: The maximum resident set size (KB) = 749768 + 0: The total amount of wall time = 197.074819 + 0: The maximum resident set size (KB) = 753528 Test 081 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.839368 - 0: The maximum resident set size (KB) = 795384 + 0: The total amount of wall time = 198.584617 + 0: The maximum resident set size (KB) = 793008 Test 082 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.032550 - 0: The maximum resident set size (KB) = 1566204 + 0: The total amount of wall time = 221.560297 + 0: The maximum resident set size (KB) = 1566792 Test 083 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1343.298164 - 0: The maximum resident set size (KB) = 1010528 + 0: The total amount of wall time = 1370.448670 + 0: The maximum resident set size (KB) = 1014800 Test 084 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.845133 - 0: The maximum resident set size (KB) = 1127848 + 0: The total amount of wall time = 352.972664 + 0: The maximum resident set size (KB) = 1126124 Test 085 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 340.499916 - 0: The maximum resident set size (KB) = 1117108 + 0: The total amount of wall time = 348.517505 + 0: The maximum resident set size (KB) = 1118992 Test 086 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_unified_drag_suite_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.935953 - 0: The maximum resident set size (KB) = 1127748 + 0: The total amount of wall time = 353.562975 + 0: The maximum resident set size (KB) = 1127456 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.225814 - 0: The maximum resident set size (KB) = 1207672 + 0: The total amount of wall time = 364.943369 + 0: The maximum resident set size (KB) = 1194856 Test 088 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.936124 - 0: The maximum resident set size (KB) = 1117248 + 0: The total amount of wall time = 393.604969 + 0: The maximum resident set size (KB) = 1127728 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_unified_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.439281 - 0: The maximum resident set size (KB) = 1132492 + 0: The total amount of wall time = 366.695781 + 0: The maximum resident set size (KB) = 1121596 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.947810 - 0: The maximum resident set size (KB) = 1123980 + 0: The total amount of wall time = 367.429872 + 0: The maximum resident set size (KB) = 1118580 Test 091 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.410344 - 0: The maximum resident set size (KB) = 1127312 + 0: The total amount of wall time = 354.833005 + 0: The maximum resident set size (KB) = 1123840 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 395.977659 - 0: The maximum resident set size (KB) = 1117416 + 0: The total amount of wall time = 349.124566 + 0: The maximum resident set size (KB) = 1122712 Test 093 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.097704 - 0: The maximum resident set size (KB) = 1114760 + 0: The total amount of wall time = 361.388116 + 0: The maximum resident set size (KB) = 1119104 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 579.297997 - 0: The maximum resident set size (KB) = 1128140 + 0: The total amount of wall time = 598.749688 + 0: The maximum resident set size (KB) = 1126008 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.563792 - 0: The maximum resident set size (KB) = 1117380 + 0: The total amount of wall time = 354.127338 + 0: The maximum resident set size (KB) = 1125780 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 430.860805 - 0: The maximum resident set size (KB) = 1121024 + 0: The total amount of wall time = 435.891144 + 0: The maximum resident set size (KB) = 1120880 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.545997 - 0: The maximum resident set size (KB) = 1118768 + 0: The total amount of wall time = 360.456898 + 0: The maximum resident set size (KB) = 1119096 Test 098 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 358.755377 - 0: The maximum resident set size (KB) = 497544 + 0: The total amount of wall time = 359.285946 + 0: The maximum resident set size (KB) = 498184 Test 099 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3466,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.655237 - 0: The maximum resident set size (KB) = 1018828 + 0: The total amount of wall time = 313.364730 + 0: The maximum resident set size (KB) = 1019212 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3520,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.883943 - 0: The maximum resident set size (KB) = 950584 + 0: The total amount of wall time = 552.630169 + 0: The maximum resident set size (KB) = 944660 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3574,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.242136 - 0: The maximum resident set size (KB) = 906620 + 0: The total amount of wall time = 258.083333 + 0: The maximum resident set size (KB) = 904480 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3628,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 253.764730 - 0: The maximum resident set size (KB) = 852772 + 0: The total amount of wall time = 263.691529 + 0: The maximum resident set size (KB) = 860220 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3682,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.778299 - 0: The maximum resident set size (KB) = 967316 + 0: The total amount of wall time = 474.167231 + 0: The maximum resident set size (KB) = 967948 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.269609 - 0: The maximum resident set size (KB) = 884548 + 0: The total amount of wall time = 239.746081 + 0: The maximum resident set size (KB) = 878076 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3790,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 268.878222 - 0: The maximum resident set size (KB) = 863464 + 0: The total amount of wall time = 272.668281 + 0: The maximum resident set size (KB) = 866012 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3836,42 +3836,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.575390 - 0: The maximum resident set size (KB) = 903484 + 0: The total amount of wall time = 355.531505 + 0: The maximum resident set size (KB) = 912396 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.134217 - 0: The maximum resident set size (KB) = 836180 + 0: The total amount of wall time = 135.082516 + 0: The maximum resident set size (KB) = 827628 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 138.912291 - 0: The maximum resident set size (KB) = 792120 + 0: The total amount of wall time = 133.695993 + 0: The maximum resident set size (KB) = 791984 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3887,40 +3887,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 159.933086 - 0: The maximum resident set size (KB) = 1152724 + 0: The total amount of wall time = 166.888921 + 0: The maximum resident set size (KB) = 1143160 Test 110 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 73.197207 - 0: The maximum resident set size (KB) = 1093296 + 0: The total amount of wall time = 71.120267 + 0: The maximum resident set size (KB) = 1091484 Test 111 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.053070 - 0: The maximum resident set size (KB) = 1093140 + 0: The total amount of wall time = 85.957962 + 0: The maximum resident set size (KB) = 1089220 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3967,123 +3967,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.457707 - 0: The maximum resident set size (KB) = 968788 + 0: The total amount of wall time = 329.665104 + 0: The maximum resident set size (KB) = 974680 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.275833 - 0: The maximum resident set size (KB) = 1014132 + 0: The total amount of wall time = 353.871527 + 0: The maximum resident set size (KB) = 1011432 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.214647 - 0: The maximum resident set size (KB) = 1009028 + 0: The total amount of wall time = 345.269834 + 0: The maximum resident set size (KB) = 1008048 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1084.084163 - 0: The maximum resident set size (KB) = 1174620 + 0: The total amount of wall time = 1077.845544 + 0: The maximum resident set size (KB) = 1177904 Test 116 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_debug_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 623.424079 - 0: The maximum resident set size (KB) = 1125452 + 0: The total amount of wall time = 677.684647 + 0: The maximum resident set size (KB) = 1120148 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1084.940867 - 0: The maximum resident set size (KB) = 1253440 + 0: The total amount of wall time = 1081.923825 + 0: The maximum resident set size (KB) = 1244268 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/rap_control_dyn64_phy32_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.947686 - 0: The maximum resident set size (KB) = 1032852 + 0: The total amount of wall time = 354.154347 + 0: The maximum resident set size (KB) = 1035700 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 320.213938 - 0: The maximum resident set size (KB) = 1392512 + 0: The total amount of wall time = 382.801385 + 0: The maximum resident set size (KB) = 1388016 Test 120 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 392.198181 - 0: The maximum resident set size (KB) = 1710988 + 0: The total amount of wall time = 450.223294 + 0: The maximum resident set size (KB) = 1701044 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4092,14 +4092,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 512.669286 - 0: The maximum resident set size (KB) = 1455376 + 0: The total amount of wall time = 516.186156 + 0: The maximum resident set size (KB) = 1432172 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,14 +4108,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 904.142082 - 0: The maximum resident set size (KB) = 1449060 + 0: The total amount of wall time = 935.524956 + 0: The maximum resident set size (KB) = 1417924 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4126,14 +4126,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1038.439250 - 0: The maximum resident set size (KB) = 1492280 + 0: The total amount of wall time = 1052.319797 + 0: The maximum resident set size (KB) = 1502512 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_docn_intel Checking test 125 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4141,14 +4141,14 @@ Checking test 125 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 470.083974 - 0: The maximum resident set size (KB) = 1428324 + 0: The total amount of wall time = 482.137365 + 0: The maximum resident set size (KB) = 1427156 Test 125 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_docn_oisst_intel Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4156,118 +4156,118 @@ Checking test 126 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 465.669490 - 0: The maximum resident set size (KB) = 1454584 + 0: The total amount of wall time = 473.963583 + 0: The maximum resident set size (KB) = 1441532 Test 126 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_cfsr_intel Checking test 127 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.743295 - 0: The maximum resident set size (KB) = 1027864 + 0: The total amount of wall time = 205.378137 + 0: The maximum resident set size (KB) = 1025092 Test 127 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_restart_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_restart_cfsr_intel Checking test 128 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.543583 - 0: The maximum resident set size (KB) = 992976 + 0: The total amount of wall time = 120.129514 + 0: The maximum resident set size (KB) = 993396 Test 128 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_gefs_intel Checking test 129 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 214.652449 - 0: The maximum resident set size (KB) = 900852 + 0: The total amount of wall time = 186.663316 + 0: The maximum resident set size (KB) = 906428 Test 129 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_iau_gefs_intel Checking test 130 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 213.777668 - 0: The maximum resident set size (KB) = 899464 + 0: The total amount of wall time = 202.960118 + 0: The maximum resident set size (KB) = 902308 Test 130 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_stochy_gefs_intel Checking test 131 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.456060 - 0: The maximum resident set size (KB) = 907608 + 0: The total amount of wall time = 204.123006 + 0: The maximum resident set size (KB) = 900700 Test 131 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_ciceC_cfsr_intel Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.715971 - 0: The maximum resident set size (KB) = 1051888 + 0: The total amount of wall time = 198.147664 + 0: The maximum resident set size (KB) = 1042880 Test 132 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_bulk_cfsr_intel Checking test 133 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.605563 - 0: The maximum resident set size (KB) = 1028440 + 0: The total amount of wall time = 209.265330 + 0: The maximum resident set size (KB) = 1023260 Test 133 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_bulk_gefs_intel Checking test 134 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.304317 - 0: The maximum resident set size (KB) = 901584 + 0: The total amount of wall time = 201.101316 + 0: The maximum resident set size (KB) = 903408 Test 134 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_mx025_cfsr_intel Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4276,14 +4276,14 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 541.857748 - 0: The maximum resident set size (KB) = 846228 + 0: The total amount of wall time = 537.912842 + 0: The maximum resident set size (KB) = 850244 Test 135 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_mx025_gefs_intel Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4292,77 +4292,77 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 536.587630 - 0: The maximum resident set size (KB) = 798728 + 0: The total amount of wall time = 539.000500 + 0: The maximum resident set size (KB) = 809388 Test 136 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_multiple_files_cfsr_intel Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.867025 - 0: The maximum resident set size (KB) = 1025524 + 0: The total amount of wall time = 227.191985 + 0: The maximum resident set size (KB) = 1024768 Test 137 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_3072x1536_cfsr_intel Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 322.777472 - 0: The maximum resident set size (KB) = 2358532 + 0: The total amount of wall time = 325.215872 + 0: The maximum resident set size (KB) = 2364340 Test 138 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_gfs_intel Checking test 139 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 322.902707 - 0: The maximum resident set size (KB) = 2264808 + 0: The total amount of wall time = 340.026439 + 0: The maximum resident set size (KB) = 2364692 Test 139 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_debug_cfsr_intel Checking test 140 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 458.588662 - 0: The maximum resident set size (KB) = 987112 + 0: The total amount of wall time = 463.600017 + 0: The maximum resident set size (KB) = 983420 Test 140 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_cfsr_faster_intel Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 187.892639 - 0: The maximum resident set size (KB) = 1027292 + 0: The total amount of wall time = 204.442008 + 0: The maximum resident set size (KB) = 1022468 Test 141 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_lnd_gswp3_intel Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4371,14 +4371,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.658749 - 0: The maximum resident set size (KB) = 221124 + 0: The total amount of wall time = 10.365798 + 0: The maximum resident set size (KB) = 221396 Test 142 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/datm_cdeps_lnd_gswp3_rst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_lnd_gswp3_rst_intel Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4387,14 +4387,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 25.568910 - 0: The maximum resident set size (KB) = 220892 + 0: The total amount of wall time = 19.096644 + 0: The maximum resident set size (KB) = 219496 Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_atmlnd_sbs_intel Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4479,14 +4479,14 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 318.763703 - 0: The maximum resident set size (KB) = 1598644 + 0: The total amount of wall time = 309.478762 + 0: The maximum resident set size (KB) = 1594568 Test 144 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmwav_control_noaero_p8_intel Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4529,14 +4529,14 @@ Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 150.946396 - 0: The maximum resident set size (KB) = 1574572 + 0: The total amount of wall time = 149.297418 + 0: The maximum resident set size (KB) = 1572464 Test 145 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_atmwav_intel Checking test 146 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4580,14 +4580,14 @@ Checking test 146 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 117.173735 - 0: The maximum resident set size (KB) = 600460 + 0: The total amount of wall time = 118.464127 + 0: The maximum resident set size (KB) = 598380 Test 146 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_intel Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4631,14 +4631,14 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.600048 - 0: The maximum resident set size (KB) = 1654172 + 0: The total amount of wall time = 324.580808 + 0: The maximum resident set size (KB) = 1678152 Test 147 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_rad_intel Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4682,14 +4682,14 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.496003 - 0: The maximum resident set size (KB) = 1683152 + 0: The total amount of wall time = 397.040986 + 0: The maximum resident set size (KB) = 1681040 Test 148 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_70761/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_rad_micro_intel Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4733,12 +4733,12 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.667102 - 0: The maximum resident set size (KB) = 1707132 + 0: The total amount of wall time = 393.863464 + 0: The maximum resident set size (KB) = 1696044 Test 149 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sat Sep 23 09:32:23 UTC 2023 -Elapsed time: 05h:50m:16s. Have a nice day! +Thu Sep 28 08:49:32 UTC 2023 +Elapsed time: 02h:56m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 4e4e61fbe0..d7bc806428 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Sun Sep 24 09:26:40 CDT 2023 +Thu Sep 28 08:02:54 CDT 2023 Start Regression test -Testing UFSWM Hash: 22a72ff1a12821e2229a672567dae2d55eebad40 +Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 691 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 242 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 731 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 617 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 247 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 664 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 644 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 229 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 665 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 215 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 688 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 714 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 713 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 676 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 720 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 821 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1154 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 820 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atmaero_intel elapsed time 658 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 656 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 244 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 707 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 632 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 675 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 239 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 694 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 693 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 813 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 780 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 798 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 296 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1092 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 877 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_debug_intel elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 806 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 257 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_intel elapsed time 813 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 279 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1055 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 297.688576 - 0: The maximum resident set size (KB) = 3174748 + 0: The total amount of wall time = 300.020144 + 0: The maximum resident set size (KB) = 3169572 -Test 001 cpld_control_p8_mixedmode_intel PASS +Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_gfsv17_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 217.244393 - 0: The maximum resident set size (KB) = 1711084 + 0: The total amount of wall time = 214.458646 + 0: The maximum resident set size (KB) = 1709644 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.570109 - 0: The maximum resident set size (KB) = 3208164 + 0: The total amount of wall time = 335.561106 + 0: The maximum resident set size (KB) = 3210216 Test 003 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.998862 - 0: The maximum resident set size (KB) = 3257452 + 0: The total amount of wall time = 199.335162 + 0: The maximum resident set size (KB) = 3260136 Test 004 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_qr_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.115738 - 0: The maximum resident set size (KB) = 3221768 + 0: The total amount of wall time = 337.076495 + 0: The maximum resident set size (KB) = 3216724 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_qr_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.778053 - 0: The maximum resident set size (KB) = 3021852 + 0: The total amount of wall time = 196.667370 + 0: The maximum resident set size (KB) = 3092196 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_2threads_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.089317 - 0: The maximum resident set size (KB) = 3551648 + 0: The total amount of wall time = 361.737227 + 0: The maximum resident set size (KB) = 3554760 Test 007 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_decomp_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.599852 - 0: The maximum resident set size (KB) = 3201188 + 0: The total amount of wall time = 335.388217 + 0: The maximum resident set size (KB) = 3202376 Test 008 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_mpi_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.894875 - 0: The maximum resident set size (KB) = 3063336 + 0: The total amount of wall time = 278.304950 + 0: The maximum resident set size (KB) = 3063332 Test 009 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_ciceC_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.787586 - 0: The maximum resident set size (KB) = 3210868 + 0: The total amount of wall time = 340.500030 + 0: The maximum resident set size (KB) = 3210160 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 588.417778 - 0: The maximum resident set size (KB) = 3332940 + 0: The total amount of wall time = 588.017695 + 0: The maximum resident set size (KB) = 3329796 Test 011 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_c192_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.102133 - 0: The maximum resident set size (KB) = 3624380 + 0: The total amount of wall time = 383.917210 + 0: The maximum resident set size (KB) = 3627860 Test 012 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 764.641432 - 0: The maximum resident set size (KB) = 4126780 + 0: The total amount of wall time = 755.148662 + 0: The maximum resident set size (KB) = 4118564 Test 013 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_bmark_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 492.412805 - 0: The maximum resident set size (KB) = 4379908 + 0: The total amount of wall time = 530.732009 + 0: The maximum resident set size (KB) = 4373992 Test 014 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 250.451859 - 0: The maximum resident set size (KB) = 1740972 + 0: The total amount of wall time = 255.873456 + 0: The maximum resident set size (KB) = 1742772 Test 015 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.297448 - 0: The maximum resident set size (KB) = 1782832 + 0: The total amount of wall time = 255.825091 + 0: The maximum resident set size (KB) = 1779728 Test 016 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 529.457942 - 0: The maximum resident set size (KB) = 3244752 + 0: The total amount of wall time = 530.335649 + 0: The maximum resident set size (KB) = 3244412 Test 017 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.271130 - 0: The maximum resident set size (KB) = 1761728 + 0: The total amount of wall time = 369.024322 + 0: The maximum resident set size (KB) = 1753340 Test 018 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.342503 - 0: The maximum resident set size (KB) = 1786676 + 0: The total amount of wall time = 260.023016 + 0: The maximum resident set size (KB) = 1783192 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 499.637471 - 0: The maximum resident set size (KB) = 2822000 + 0: The total amount of wall time = 499.539149 + 0: The maximum resident set size (KB) = 2832240 Test 020 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.686808 - 0: The maximum resident set size (KB) = 3215692 + 0: The total amount of wall time = 315.599356 + 0: The maximum resident set size (KB) = 3217628 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_control_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1206.882725 - 0: The maximum resident set size (KB) = 1783372 + 0: The total amount of wall time = 1205.888297 + 0: The maximum resident set size (KB) = 1768260 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 586.175183 - 0: The maximum resident set size (KB) = 1112672 + 0: The total amount of wall time = 573.370775 + 0: The maximum resident set size (KB) = 1151640 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1063.326598 - 0: The maximum resident set size (KB) = 1675524 + 0: The total amount of wall time = 1068.017326 + 0: The maximum resident set size (KB) = 1677604 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1425.444739 - 0: The maximum resident set size (KB) = 1715196 + 0: The total amount of wall time = 1390.239859 + 0: The maximum resident set size (KB) = 1713784 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_flake_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.592561 - 0: The maximum resident set size (KB) = 696820 + 0: The total amount of wall time = 193.259480 + 0: The maximum resident set size (KB) = 698288 Test 026 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.722664 - 0: The maximum resident set size (KB) = 643636 + 0: The total amount of wall time = 131.968413 + 0: The maximum resident set size (KB) = 639816 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.803920 - 0: The maximum resident set size (KB) = 649728 + 0: The total amount of wall time = 138.607056 + 0: The maximum resident set size (KB) = 648908 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_latlon_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,16 +1745,16 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.549978 - 0: The maximum resident set size (KB) = 644392 + 0: The total amount of wall time = 135.369726 + 0: The maximum resident set size (KB) = 643016 Test 029 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.094274 - 0: The maximum resident set size (KB) = 642840 + 0: The total amount of wall time = 136.077357 + 0: The maximum resident set size (KB) = 647088 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c48_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 343.329115 -0: The maximum resident set size (KB) = 834712 +0: The total amount of wall time = 345.467083 +0: The maximum resident set size (KB) = 834904 Test 031 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c192_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.261372 - 0: The maximum resident set size (KB) = 790000 + 0: The total amount of wall time = 528.494238 + 0: The maximum resident set size (KB) = 784852 Test 032 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c384_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 583.030806 - 0: The maximum resident set size (KB) = 1382632 + 0: The total amount of wall time = 580.826618 + 0: The maximum resident set size (KB) = 1348692 Test 033 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_c384gdas_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 509.791200 - 0: The maximum resident set size (KB) = 1455272 + 0: The total amount of wall time = 510.500901 + 0: The maximum resident set size (KB) = 1456184 Test 034 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.837055 - 0: The maximum resident set size (KB) = 651276 + 0: The total amount of wall time = 90.647038 + 0: The maximum resident set size (KB) = 645252 Test 035 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_restart_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.748021 - 0: The maximum resident set size (KB) = 555796 + 0: The total amount of wall time = 47.962089 + 0: The maximum resident set size (KB) = 552780 Test 036 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.298114 - 0: The maximum resident set size (KB) = 649444 + 0: The total amount of wall time = 82.534602 + 0: The maximum resident set size (KB) = 647968 Test 037 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_iovr4_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.023957 - 0: The maximum resident set size (KB) = 644236 + 0: The total amount of wall time = 135.054032 + 0: The maximum resident set size (KB) = 644096 Test 038 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_iovr5_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.703628 - 0: The maximum resident set size (KB) = 640796 + 0: The total amount of wall time = 136.072245 + 0: The maximum resident set size (KB) = 640620 Test 039 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.774656 - 0: The maximum resident set size (KB) = 1623244 + 0: The total amount of wall time = 172.523797 + 0: The maximum resident set size (KB) = 1610132 Test 040 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_restart_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.497536 - 0: The maximum resident set size (KB) = 936680 + 0: The total amount of wall time = 89.042275 + 0: The maximum resident set size (KB) = 936660 Test 041 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_qr_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.873892 - 0: The maximum resident set size (KB) = 1616388 + 0: The total amount of wall time = 170.724953 + 0: The maximum resident set size (KB) = 1628436 Test 042 control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_restart_qr_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.711209 - 0: The maximum resident set size (KB) = 855972 + 0: The total amount of wall time = 93.430166 + 0: The maximum resident set size (KB) = 883304 Test 043 control_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_decomp_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.284777 - 0: The maximum resident set size (KB) = 1599916 + 0: The total amount of wall time = 190.372007 + 0: The maximum resident set size (KB) = 1611248 Test 044 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_2threads_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.225761 - 0: The maximum resident set size (KB) = 1692160 + 0: The total amount of wall time = 185.332957 + 0: The maximum resident set size (KB) = 1709380 Test 045 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_lndp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.822944 - 0: The maximum resident set size (KB) = 1620280 + 0: The total amount of wall time = 322.784444 + 0: The maximum resident set size (KB) = 1618036 Test 046 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_rrtmgp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.766726 - 0: The maximum resident set size (KB) = 1679604 + 0: The total amount of wall time = 233.101328 + 0: The maximum resident set size (KB) = 1688940 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_mynn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.580726 - 0: The maximum resident set size (KB) = 1624840 + 0: The total amount of wall time = 170.679463 + 0: The maximum resident set size (KB) = 1632276 Test 048 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/merra2_thompson_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.867916 - 0: The maximum resident set size (KB) = 1603172 + 0: The total amount of wall time = 192.312862 + 0: The maximum resident set size (KB) = 1642216 Test 049 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.548400 - 0: The maximum resident set size (KB) = 1102712 + 0: The total amount of wall time = 290.279325 + 0: The maximum resident set size (KB) = 1097444 Test 050 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_restart_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.622198 - 0: The maximum resident set size (KB) = 1091756 + 0: The total amount of wall time = 152.891871 + 0: The maximum resident set size (KB) = 1085824 Test 051 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.127753 - 0: The maximum resident set size (KB) = 1098968 + 0: The total amount of wall time = 288.385993 + 0: The maximum resident set size (KB) = 1101612 Test 052 regional_control_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_restart_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.726978 - 0: The maximum resident set size (KB) = 1051912 + 0: The total amount of wall time = 151.300609 + 0: The maximum resident set size (KB) = 1087572 Test 053 regional_restart_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_decomp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.948666 - 0: The maximum resident set size (KB) = 1096880 + 0: The total amount of wall time = 310.032067 + 0: The maximum resident set size (KB) = 1097344 Test 054 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_2threads_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,14 +2577,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 225.318273 - 0: The maximum resident set size (KB) = 1085364 + 0: The total amount of wall time = 201.129335 + 0: The maximum resident set size (KB) = 1074232 Test 055 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_noquilt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc ............ALT CHECK......OK Comparing fv3_history2d.nc ............ALT CHECK......OK @@ -2592,28 +2592,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.306780 - 0: The maximum resident set size (KB) = 1366020 + 0: The total amount of wall time = 289.610826 + 0: The maximum resident set size (KB) = 1364036 Test 056 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_netcdf_parallel_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.513426 - 0: The maximum resident set size (KB) = 1098904 + 0: The total amount of wall time = 288.028068 + 0: The maximum resident set size (KB) = 1097352 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_2dwrtdecomp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.198411 - 0: The maximum resident set size (KB) = 1099892 + 0: The total amount of wall time = 291.281617 + 0: The maximum resident set size (KB) = 1098468 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_wofs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.661390 - 0: The maximum resident set size (KB) = 921276 + 0: The total amount of wall time = 372.516307 + 0: The maximum resident set size (KB) = 921372 Test 059 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.867977 - 0: The maximum resident set size (KB) = 1244252 + 0: The total amount of wall time = 448.842285 + 0: The maximum resident set size (KB) = 1249448 Test 060 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 266.070640 - 0: The maximum resident set size (KB) = 1204956 + 0: The total amount of wall time = 262.572132 + 0: The maximum resident set size (KB) = 1218264 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_decomp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.923620 - 0: The maximum resident set size (KB) = 1174036 + 0: The total amount of wall time = 469.365417 + 0: The maximum resident set size (KB) = 1180316 Test 062 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_2threads_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.136294 - 0: The maximum resident set size (KB) = 1324864 + 0: The total amount of wall time = 453.019368 + 0: The maximum resident set size (KB) = 1325536 Test 063 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_restart_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.409397 - 0: The maximum resident set size (KB) = 1136488 + 0: The total amount of wall time = 229.967730 + 0: The maximum resident set size (KB) = 1144804 Test 064 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.335561 - 0: The maximum resident set size (KB) = 1245456 + 0: The total amount of wall time = 448.190022 + 0: The maximum resident set size (KB) = 1243176 Test 065 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_decomp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.601232 - 0: The maximum resident set size (KB) = 1176292 + 0: The total amount of wall time = 472.363444 + 0: The maximum resident set size (KB) = 1175988 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_restart_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.165435 - 0: The maximum resident set size (KB) = 1171336 + 0: The total amount of wall time = 333.796881 + 0: The maximum resident set size (KB) = 1175352 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.571883 - 0: The maximum resident set size (KB) = 1183604 + 0: The total amount of wall time = 432.875486 + 0: The maximum resident set size (KB) = 1184972 Test 068 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 440.650116 - 0: The maximum resident set size (KB) = 1088716 + 0: The total amount of wall time = 430.974245 + 0: The maximum resident set size (KB) = 1086856 Test 069 hrrr_control_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_decomp_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.307574 - 0: The maximum resident set size (KB) = 1120768 + 0: The total amount of wall time = 455.559816 + 0: The maximum resident set size (KB) = 1121876 Test 070 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_2threads_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.228370 - 0: The maximum resident set size (KB) = 1137556 + 0: The total amount of wall time = 366.044245 + 0: The maximum resident set size (KB) = 1139368 Test 071 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.770148 - 0: The maximum resident set size (KB) = 1122688 + 0: The total amount of wall time = 322.346659 + 0: The maximum resident set size (KB) = 1117376 Test 072 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.888103 - 0: The maximum resident set size (KB) = 1020672 + 0: The total amount of wall time = 324.365201 + 0: The maximum resident set size (KB) = 1026564 Test 073 hrrr_control_restart_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1beta_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.634892 - 0: The maximum resident set size (KB) = 1205656 + 0: The total amount of wall time = 445.779533 + 0: The maximum resident set size (KB) = 1202816 Test 074 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1nssl_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.997955 - 0: The maximum resident set size (KB) = 799300 + 0: The total amount of wall time = 530.324963 + 0: The maximum resident set size (KB) = 803892 Test 075 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.221667 - 0: The maximum resident set size (KB) = 913588 + 0: The total amount of wall time = 514.524710 + 0: The maximum resident set size (KB) = 920464 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_gf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_gf_intel Checking test 077 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,14 @@ Checking test 077 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.717845 - 0: The maximum resident set size (KB) = 1230272 + 0: The total amount of wall time = 455.767808 + 0: The maximum resident set size (KB) = 1237244 Test 077 hrrr_gf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_c3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_c3_intel Checking test 078 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,14 +3472,14 @@ Checking test 078 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.499566 - 0: The maximum resident set size (KB) = 1235932 + 0: The total amount of wall time = 451.216403 + 0: The maximum resident set size (KB) = 1232116 Test 078 hrrr_c3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmg_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3490,14 +3490,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.986806 - 0: The maximum resident set size (KB) = 785580 + 0: The total amount of wall time = 337.146795 + 0: The maximum resident set size (KB) = 821124 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmgt_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3508,14 +3508,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.396060 - 0: The maximum resident set size (KB) = 817716 + 0: The total amount of wall time = 334.577621 + 0: The maximum resident set size (KB) = 820300 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_ras_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3526,26 +3526,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.123113 - 0: The maximum resident set size (KB) = 810824 + 0: The total amount of wall time = 184.978803 + 0: The maximum resident set size (KB) = 814860 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wam_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.784734 - 0: The maximum resident set size (KB) = 705192 + 0: The total amount of wall time = 113.471712 + 0: The maximum resident set size (KB) = 713972 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3592,14 +3592,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.756015 - 0: The maximum resident set size (KB) = 1610496 + 0: The total amount of wall time = 153.493613 + 0: The maximum resident set size (KB) = 1622544 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_control_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.014812 - 0: The maximum resident set size (KB) = 1093276 + 0: The total amount of wall time = 264.043997 + 0: The maximum resident set size (KB) = 1093300 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3644,348 +3644,348 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.743663 - 0: The maximum resident set size (KB) = 802140 + 0: The total amount of wall time = 151.617517 + 0: The maximum resident set size (KB) = 799320 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.414907 - 0: The maximum resident set size (KB) = 802812 + 0: The total amount of wall time = 151.380367 + 0: The maximum resident set size (KB) = 803508 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_stochy_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.352690 - 0: The maximum resident set size (KB) = 805564 + 0: The total amount of wall time = 168.557974 + 0: The maximum resident set size (KB) = 807528 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.655018 - 0: The maximum resident set size (KB) = 807272 + 0: The total amount of wall time = 155.223707 + 0: The maximum resident set size (KB) = 800988 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmg_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.929906 - 0: The maximum resident set size (KB) = 848936 + 0: The total amount of wall time = 235.068563 + 0: The maximum resident set size (KB) = 856780 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_csawmgt_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.394078 - 0: The maximum resident set size (KB) = 849768 + 0: The total amount of wall time = 232.317120 + 0: The maximum resident set size (KB) = 853608 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_ras_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.353697 - 0: The maximum resident set size (KB) = 814736 + 0: The total amount of wall time = 157.864162 + 0: The maximum resident set size (KB) = 824528 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.792390 - 0: The maximum resident set size (KB) = 853476 + 0: The total amount of wall time = 160.514276 + 0: The maximum resident set size (KB) = 859264 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_debug_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.742229 - 0: The maximum resident set size (KB) = 1637232 + 0: The total amount of wall time = 172.176157 + 0: The maximum resident set size (KB) = 1633068 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1025.924770 - 0: The maximum resident set size (KB) = 1117308 + 0: The total amount of wall time = 999.753425 + 0: The maximum resident set size (KB) = 1107984 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.943736 - 0: The maximum resident set size (KB) = 1186868 + 0: The total amount of wall time = 276.911826 + 0: The maximum resident set size (KB) = 1189696 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.014315 - 0: The maximum resident set size (KB) = 1187992 + 0: The total amount of wall time = 271.217730 + 0: The maximum resident set size (KB) = 1194400 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.938231 - 0: The maximum resident set size (KB) = 1188424 + 0: The total amount of wall time = 281.631170 + 0: The maximum resident set size (KB) = 1184308 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_diag_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.110871 - 0: The maximum resident set size (KB) = 1232952 + 0: The total amount of wall time = 294.050267 + 0: The maximum resident set size (KB) = 1276544 Test 098 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.070273 - 0: The maximum resident set size (KB) = 1196000 + 0: The total amount of wall time = 290.416492 + 0: The maximum resident set size (KB) = 1200616 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_unified_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.672938 - 0: The maximum resident set size (KB) = 1187024 + 0: The total amount of wall time = 392.867078 + 0: The maximum resident set size (KB) = 1192416 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_lndp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.103691 - 0: The maximum resident set size (KB) = 1189384 + 0: The total amount of wall time = 273.077532 + 0: The maximum resident set size (KB) = 1189052 Test 101 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_progcld_thompson_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.289131 - 0: The maximum resident set size (KB) = 1187456 + 0: The total amount of wall time = 281.322762 + 0: The maximum resident set size (KB) = 1183840 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_noah_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.971027 - 0: The maximum resident set size (KB) = 1183708 + 0: The total amount of wall time = 270.843913 + 0: The maximum resident set size (KB) = 1195860 Test 103 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_sfcdiff_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.923530 - 0: The maximum resident set size (KB) = 1182528 + 0: The total amount of wall time = 280.029557 + 0: The maximum resident set size (KB) = 1195572 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.563677 - 0: The maximum resident set size (KB) = 1188068 + 0: The total amount of wall time = 456.426731 + 0: The maximum resident set size (KB) = 1187208 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rrfs_v1beta_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.989959 - 0: The maximum resident set size (KB) = 1177680 + 0: The total amount of wall time = 277.315284 + 0: The maximum resident set size (KB) = 1193208 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_clm_lake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.842997 - 0: The maximum resident set size (KB) = 1202440 + 0: The total amount of wall time = 341.571983 + 0: The maximum resident set size (KB) = 1189044 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_flake_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.949982 - 0: The maximum resident set size (KB) = 1184928 + 0: The total amount of wall time = 288.768722 + 0: The maximum resident set size (KB) = 1184968 Test 108 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_wam_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 285.263198 - 0: The maximum resident set size (KB) = 594112 + 0: The total amount of wall time = 283.964846 + 0: The maximum resident set size (KB) = 592492 Test 109 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3996,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 247.463266 - 0: The maximum resident set size (KB) = 1103864 + 0: The total amount of wall time = 248.378531 + 0: The maximum resident set size (KB) = 1108840 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4050,14 +4050,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.036447 - 0: The maximum resident set size (KB) = 1107084 + 0: The total amount of wall time = 368.719595 + 0: The maximum resident set size (KB) = 1111068 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.745852 - 0: The maximum resident set size (KB) = 1034880 + 0: The total amount of wall time = 191.953047 + 0: The maximum resident set size (KB) = 1031536 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.544047 - 0: The maximum resident set size (KB) = 981804 + 0: The total amount of wall time = 192.090371 + 0: The maximum resident set size (KB) = 982676 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4212,14 +4212,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.865469 - 0: The maximum resident set size (KB) = 1124700 + 0: The total amount of wall time = 379.593940 + 0: The maximum resident set size (KB) = 1126300 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.806876 - 0: The maximum resident set size (KB) = 967812 + 0: The total amount of wall time = 162.415303 + 0: The maximum resident set size (KB) = 974156 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4320,14 +4320,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.375188 - 0: The maximum resident set size (KB) = 980952 + 0: The total amount of wall time = 201.617724 + 0: The maximum resident set size (KB) = 986644 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4366,42 +4366,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.280687 - 0: The maximum resident set size (KB) = 1061660 + 0: The total amount of wall time = 276.890556 + 0: The maximum resident set size (KB) = 1056296 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.801056 - 0: The maximum resident set size (KB) = 937572 + 0: The total amount of wall time = 99.789769 + 0: The maximum resident set size (KB) = 939420 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 103.085602 - 0: The maximum resident set size (KB) = 883212 + 0: The total amount of wall time = 102.869778 + 0: The maximum resident set size (KB) = 888464 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_control_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.563603 - 0: The maximum resident set size (KB) = 1251592 + 0: The total amount of wall time = 112.012509 + 0: The maximum resident set size (KB) = 1257500 Test 120 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_2threads_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 49.500502 - 0: The maximum resident set size (KB) = 1176920 + 0: The total amount of wall time = 48.695987 + 0: The maximum resident set size (KB) = 1175756 Test 121 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_restart_mismatch_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.435872 - 0: The maximum resident set size (KB) = 1123664 + 0: The total amount of wall time = 65.622055 + 0: The maximum resident set size (KB) = 1188892 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn64_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,123 +4497,123 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.185583 - 0: The maximum resident set size (KB) = 1109984 + 0: The total amount of wall time = 241.177715 + 0: The maximum resident set size (KB) = 1105416 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.494832 - 0: The maximum resident set size (KB) = 1070480 + 0: The total amount of wall time = 272.507128 + 0: The maximum resident set size (KB) = 1074508 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.585802 - 0: The maximum resident set size (KB) = 1071308 + 0: The total amount of wall time = 266.831926 + 0: The maximum resident set size (KB) = 1079072 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 866.016454 - 0: The maximum resident set size (KB) = 1276484 + 0: The total amount of wall time = 850.688714 + 0: The maximum resident set size (KB) = 1274872 Test 126 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_debug_2threads_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 484.400828 - 0: The maximum resident set size (KB) = 1205456 + 0: The total amount of wall time = 473.477500 + 0: The maximum resident set size (KB) = 1203316 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/conus13km_radar_tten_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 822.331596 - 0: The maximum resident set size (KB) = 1348912 + 0: The total amount of wall time = 846.306701 + 0: The maximum resident set size (KB) = 1346876 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.008770 - 0: The maximum resident set size (KB) = 1111460 + 0: The total amount of wall time = 285.274202 + 0: The maximum resident set size (KB) = 1111824 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 250.231484 - 0: The maximum resident set size (KB) = 1331148 + 0: The total amount of wall time = 247.634150 + 0: The maximum resident set size (KB) = 1251812 Test 130 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 327.397661 - 0: The maximum resident set size (KB) = 1587940 + 0: The total amount of wall time = 327.407974 + 0: The maximum resident set size (KB) = 1589328 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4622,14 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.212636 - 0: The maximum resident set size (KB) = 1422252 + 0: The total amount of wall time = 376.737801 + 0: The maximum resident set size (KB) = 1418036 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4638,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 734.444398 - 0: The maximum resident set size (KB) = 1449552 + 0: The total amount of wall time = 731.834630 + 0: The maximum resident set size (KB) = 1454092 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4656,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.261437 - 0: The maximum resident set size (KB) = 1473984 + 0: The total amount of wall time = 823.323667 + 0: The maximum resident set size (KB) = 1471604 -Test 134 hafs_regional_atm_ocn_wav_intel PASS +Test 134 hafs_regional_atm_ocn_wav_intel PASS Tries: 2 baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4685,14 +4685,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 341.010120 - 0: The maximum resident set size (KB) = 651340 + 0: The total amount of wall time = 341.256014 + 0: The maximum resident set size (KB) = 658736 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_1nest_atm_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_1nest_atm_qr_intel Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4714,14 +4714,14 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 354.818617 - 0: The maximum resident set size (KB) = 506212 + 0: The total amount of wall time = 348.773185 + 0: The maximum resident set size (KB) = 503384 Test 136 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4730,14 +4730,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 391.674242 - 0: The maximum resident set size (KB) = 669412 + 0: The total amount of wall time = 390.287201 + 0: The maximum resident set size (KB) = 664132 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4784,14 +4784,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.950286 - 0: The maximum resident set size (KB) = 400716 + 0: The total amount of wall time = 167.584174 + 0: The maximum resident set size (KB) = 404680 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_1nest_atm_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_1nest_atm_qr_intel Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4838,14 +4838,14 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 172.997695 - 0: The maximum resident set size (KB) = 372304 + 0: The total amount of wall time = 173.441308 + 0: The maximum resident set size (KB) = 379712 Test 139 hafs_global_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4927,14 +4927,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 436.235693 - 0: The maximum resident set size (KB) = 486184 + 0: The total amount of wall time = 431.624840 + 0: The maximum resident set size (KB) = 487684 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_multiple_4nests_atm_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_multiple_4nests_atm_qr_intel Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5016,14 +5016,14 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 453.551706 - 0: The maximum resident set size (KB) = 421016 + 0: The total amount of wall time = 446.140253 + 0: The maximum resident set size (KB) = 475988 Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_specified_moving_1nest_atm_intel Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5032,14 +5032,14 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 218.479966 - 0: The maximum resident set size (KB) = 676292 + 0: The total amount of wall time = 217.281689 + 0: The maximum resident set size (KB) = 666164 Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_intel Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 204.454625 - 0: The maximum resident set size (KB) = 670256 + 0: The total amount of wall time = 202.804759 + 0: The maximum resident set size (KB) = 675008 Test 143 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,14 +5090,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 215.379311 - 0: The maximum resident set size (KB) = 532708 + 0: The total amount of wall time = 212.690838 + 0: The maximum resident set size (KB) = 533080 Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5106,42 +5106,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 290.207715 - 0: The maximum resident set size (KB) = 669772 + 0: The total amount of wall time = 288.806591 + 0: The maximum resident set size (KB) = 723272 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 66.218870 - 0: The maximum resident set size (KB) = 420332 + 0: The total amount of wall time = 64.889783 + 0: The maximum resident set size (KB) = 420940 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 779.487790 - 0: The maximum resident set size (KB) = 734148 + 0: The total amount of wall time = 754.561361 + 0: The maximum resident set size (KB) = 732032 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5152,14 +5152,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 536.838573 - 0: The maximum resident set size (KB) = 807280 + 0: The total amount of wall time = 530.250351 + 0: The maximum resident set size (KB) = 811456 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_docn_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_docn_intel Checking test 149 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,14 +5167,14 @@ Checking test 149 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.246617 - 0: The maximum resident set size (KB) = 1411520 + 0: The total amount of wall time = 340.833642 + 0: The maximum resident set size (KB) = 1418424 Test 149 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_docn_oisst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_docn_oisst_intel Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5182,131 +5182,131 @@ Checking test 150 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 343.446530 - 0: The maximum resident set size (KB) = 1383728 + 0: The total amount of wall time = 336.327349 + 0: The maximum resident set size (KB) = 1386524 Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_datm_cdeps_intel Checking test 151 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 949.568261 - 0: The maximum resident set size (KB) = 1155344 + 0: The total amount of wall time = 937.782098 + 0: The maximum resident set size (KB) = 1153384 Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_cfsr_intel Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.087468 - 0: The maximum resident set size (KB) = 1116568 + 0: The total amount of wall time = 148.267786 + 0: The maximum resident set size (KB) = 1102952 Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_restart_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_restart_cfsr_intel Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.892388 - 0: The maximum resident set size (KB) = 1075128 + 0: The total amount of wall time = 91.215877 + 0: The maximum resident set size (KB) = 1075228 Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_gefs_intel Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.125254 - 0: The maximum resident set size (KB) = 1002908 + 0: The total amount of wall time = 142.791612 + 0: The maximum resident set size (KB) = 1002384 Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_iau_gefs_intel Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.175450 - 0: The maximum resident set size (KB) = 1002000 + 0: The total amount of wall time = 145.848078 + 0: The maximum resident set size (KB) = 1006256 Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_stochy_gefs_intel Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.592293 - 0: The maximum resident set size (KB) = 1011148 + 0: The total amount of wall time = 145.881371 + 0: The maximum resident set size (KB) = 1004868 Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_ciceC_cfsr_intel Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.043186 - 0: The maximum resident set size (KB) = 1121668 + 0: The total amount of wall time = 149.515837 + 0: The maximum resident set size (KB) = 1113248 Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_bulk_cfsr_intel Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.452011 - 0: The maximum resident set size (KB) = 1120860 + 0: The total amount of wall time = 155.063606 + 0: The maximum resident set size (KB) = 1114880 Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_bulk_gefs_intel Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.305709 - 0: The maximum resident set size (KB) = 1010968 + 0: The total amount of wall time = 142.887543 + 0: The maximum resident set size (KB) = 1005016 Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_mx025_cfsr_intel Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5315,14 +5315,14 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 444.009360 - 0: The maximum resident set size (KB) = 1034824 + 0: The total amount of wall time = 431.133221 + 0: The maximum resident set size (KB) = 1038956 Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_mx025_gefs_intel Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5331,77 +5331,77 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.591195 - 0: The maximum resident set size (KB) = 1012952 + 0: The total amount of wall time = 427.917798 + 0: The maximum resident set size (KB) = 1018248 Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_multiple_files_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_multiple_files_cfsr_intel Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.844788 - 0: The maximum resident set size (KB) = 1124624 + 0: The total amount of wall time = 146.057375 + 0: The maximum resident set size (KB) = 1116668 Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_3072x1536_cfsr_intel Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.346807 - 0: The maximum resident set size (KB) = 2359104 + 0: The total amount of wall time = 203.481043 + 0: The maximum resident set size (KB) = 2420928 Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_gfs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_gfs_intel Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 209.688795 - 0: The maximum resident set size (KB) = 2459408 + 0: The total amount of wall time = 214.467012 + 0: The maximum resident set size (KB) = 2461952 Test 164 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_debug_cfsr_intel Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.196799 - 0: The maximum resident set size (KB) = 1045240 + 0: The total amount of wall time = 359.577482 + 0: The maximum resident set size (KB) = 1044212 Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_cfsr_faster_intel Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.705306 - 0: The maximum resident set size (KB) = 1102812 + 0: The total amount of wall time = 144.962961 + 0: The maximum resident set size (KB) = 1125852 Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_lnd_gswp3_intel Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.983000 - 0: The maximum resident set size (KB) = 260396 + 0: The total amount of wall time = 5.910503 + 0: The maximum resident set size (KB) = 257948 Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/datm_cdeps_lnd_gswp3_rst_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_lnd_gswp3_rst_intel Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.823424 - 0: The maximum resident set size (KB) = 246796 + 0: The total amount of wall time = 10.910390 + 0: The maximum resident set size (KB) = 256028 Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_atmlnd_sbs_intel Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5518,14 +5518,14 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 213.320896 - 0: The maximum resident set size (KB) = 1630660 + 0: The total amount of wall time = 204.676636 + 0: The maximum resident set size (KB) = 1639900 Test 169 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmwav_control_noaero_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmwav_control_noaero_p8_intel Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5568,14 +5568,14 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.059934 - 0: The maximum resident set size (KB) = 1663692 + 0: The total amount of wall time = 96.819888 + 0: The maximum resident set size (KB) = 1659532 Test 170 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/control_atmwav_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_atmwav_intel Checking test 171 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.031878 - 0: The maximum resident set size (KB) = 663704 + 0: The total amount of wall time = 87.531830 + 0: The maximum resident set size (KB) = 668328 Test 171 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_intel Checking test 172 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5670,14 +5670,14 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.011253 - 0: The maximum resident set size (KB) = 3007512 + 0: The total amount of wall time = 226.454402 + 0: The maximum resident set size (KB) = 3008156 Test 172 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_rad_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_rad_intel Checking test 173 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5721,14 +5721,14 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.478432 - 0: The maximum resident set size (KB) = 3072576 + 0: The total amount of wall time = 279.644814 + 0: The maximum resident set size (KB) = 3070128 Test 173 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_rad_micro_intel Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5772,14 +5772,14 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.031099 - 0: The maximum resident set size (KB) = 3077048 + 0: The total amount of wall time = 281.527378 + 0: The maximum resident set size (KB) = 3084272 Test 174 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_intel Checking test 175 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5795,14 +5795,14 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 629.510844 - 0: The maximum resident set size (KB) = 5569424 + 0: The total amount of wall time = 639.570112 + 0: The maximum resident set size (KB) = 5589548 Test 175 regional_atmaq_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_debug_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5816,14 +5816,14 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1219.371550 - 0: The maximum resident set size (KB) = 4956384 + 0: The total amount of wall time = 1193.076482 + 0: The maximum resident set size (KB) = 4954520 Test 176 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1903/stmp/zshrader/FV3_RT/rt_184633/regional_atmaq_faster_intel +working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_faster_intel Checking test 177 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5839,12 +5839,12 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 557.431655 - 0: The maximum resident set size (KB) = 5380908 + 0: The total amount of wall time = 555.859398 + 0: The maximum resident set size (KB) = 5568512 Test 177 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Sun Sep 24 10:50:57 CDT 2023 -Elapsed time: 01h:24m:18s. Have a nice day! +Thu Sep 28 09:40:23 CDT 2023 +Elapsed time: 01h:37m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 2d71e4efb5..ffa4c16bf7 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,50 +1,50 @@ -Mon Sep 25 17:55:32 UTC 2023 +Thu Sep 28 13:08:38 UTC 2023 Start Regression test -Testing UFSWM Hash: 3b1edf5180ab35eea2c4855d6b1fc035e021be3b +Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d6e821766bf377da5e92a1c84eb901e504ce5847 FV3 (remotes/origin/axis_type) + 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 632 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 631 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 440 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 912 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 941 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1297 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 672 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1520 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1057 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 544 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 2663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1803 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 603 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 989 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 681 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1043 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) +Compile atmaero_intel elapsed time 810 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 456 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 494 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1117 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 699 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 943 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 706 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1199 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1046 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 885 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1419 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 881 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1619 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 738 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1154 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1396 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 722 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 1452 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 849 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -109,14 +109,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.305300 -The maximum resident set size (KB) = 2968196 +The total amount of wall time = 825.095223 +The maximum resident set size (KB) = 2967328 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -180,14 +180,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 294.806817 -The maximum resident set size (KB) = 1570448 +The total amount of wall time = 344.388386 +The maximum resident set size (KB) = 1575232 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -252,14 +252,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.298366 -The maximum resident set size (KB) = 2992836 +The total amount of wall time = 489.282668 +The maximum resident set size (KB) = 2999732 Test 003 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -312,14 +312,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 269.272545 -The maximum resident set size (KB) = 3056988 +The total amount of wall time = 247.012119 +The maximum resident set size (KB) = 3057556 Test 004 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -384,14 +384,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.486371 -The maximum resident set size (KB) = 3005256 +The total amount of wall time = 487.554999 +The maximum resident set size (KB) = 3005576 Test 005 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -444,14 +444,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 289.976682 -The maximum resident set size (KB) = 2895712 +The total amount of wall time = 256.835352 +The maximum resident set size (KB) = 2895848 Test 006 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -504,14 +504,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 345.809092 -The maximum resident set size (KB) = 3301696 +The total amount of wall time = 527.076761 +The maximum resident set size (KB) = 3297776 Test 007 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +564,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.050451 -The maximum resident set size (KB) = 2989644 +The total amount of wall time = 477.926364 +The maximum resident set size (KB) = 2992980 Test 008 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.627127 -The maximum resident set size (KB) = 2925368 +The total amount of wall time = 548.236955 +The maximum resident set size (KB) = 2925904 Test 009 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.834913 -The maximum resident set size (KB) = 2992200 +The total amount of wall time = 589.187063 +The maximum resident set size (KB) = 2995012 Test 010 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -751,69 +751,18 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 821.901821 -The maximum resident set size (KB) = 3952156 +The total amount of wall time = 982.585697 +The maximum resident set size (KB) = 3950872 Test 011 cpld_bmark_p8_intel PASS +Test 012 cpld_restart_bmark_p8_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_bmark_p8_intel -Checking test 012 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - -The total amount of wall time = 597.641933 -The maximum resident set size (KB) = 4244944 - -Test 012 cpld_restart_bmark_p8_intel PASS +Test 012 cpld_restart_bmark_p8_intel FAIL baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -877,14 +826,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.123500 -The maximum resident set size (KB) = 1585612 +The total amount of wall time = 342.107248 +The maximum resident set size (KB) = 1584948 Test 013 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -946,14 +895,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.628902 -The maximum resident set size (KB) = 1629868 +The total amount of wall time = 370.021644 +The maximum resident set size (KB) = 1627600 Test 014 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +964,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.492175 -The maximum resident set size (KB) = 1634648 +The total amount of wall time = 369.307905 +The maximum resident set size (KB) = 1625424 Test 015 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1072,14 +1021,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.013985 -The maximum resident set size (KB) = 2645888 +The total amount of wall time = 489.126543 +The maximum resident set size (KB) = 2642900 Test 016 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1144,14 +1093,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.062108 -The maximum resident set size (KB) = 2995408 +The total amount of wall time = 882.454714 +The maximum resident set size (KB) = 2996480 Test 017 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_pdlib_p8_intel Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1164,14 @@ Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1162.439082 -The maximum resident set size (KB) = 1595996 +The total amount of wall time = 1375.485221 +The maximum resident set size (KB) = 1602908 Test 018 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_pdlib_p8_intel Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1274,14 +1223,14 @@ Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 572.647236 -The maximum resident set size (KB) = 879572 +The total amount of wall time = 619.461412 +The maximum resident set size (KB) = 875624 Test 019 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_mpi_pdlib_p8_intel Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1345,14 +1294,14 @@ Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1066.043464 -The maximum resident set size (KB) = 1581172 +The total amount of wall time = 1094.541683 +The maximum resident set size (KB) = 1584336 Test 020 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_debug_pdlib_p8_intel Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1404,14 +1353,14 @@ Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1439.556945 -The maximum resident set size (KB) = 1626276 +The total amount of wall time = 1455.908103 +The maximum resident set size (KB) = 1634160 Test 021 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1422,14 +1371,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.745602 -The maximum resident set size (KB) = 562512 +The total amount of wall time = 223.373571 +The maximum resident set size (KB) = 560528 Test 022 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1456,14 +1405,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 140.612797 -The maximum resident set size (KB) = 511384 +The total amount of wall time = 206.103206 +The maximum resident set size (KB) = 513404 Test 023 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1478,14 +1427,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.349558 -The maximum resident set size (KB) = 522568 +The total amount of wall time = 816.077903 +The maximum resident set size (KB) = 518004 Test 024 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1496,14 +1445,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.861001 -The maximum resident set size (KB) = 515756 +The total amount of wall time = 166.244202 +The maximum resident set size (KB) = 511256 Test 025 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1514,14 +1463,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.327827 -The maximum resident set size (KB) = 511348 +The total amount of wall time = 168.495527 +The maximum resident set size (KB) = 515252 Test 026 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1560,14 +1509,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 335.134075 -The maximum resident set size (KB) = 671932 +The total amount of wall time = 363.433768 +The maximum resident set size (KB) = 670868 Test 027 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1578,14 +1527,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 547.899077 -The maximum resident set size (KB) = 616136 +The total amount of wall time = 698.400816 +The maximum resident set size (KB) = 610992 Test 028 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1596,14 +1545,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 594.758707 -The maximum resident set size (KB) = 1064072 +The total amount of wall time = 949.229395 +The maximum resident set size (KB) = 1064764 Test 029 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1646,14 +1595,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 514.554997 -The maximum resident set size (KB) = 1197368 +The total amount of wall time = 1012.426285 +The maximum resident set size (KB) = 1199468 Test 030 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1664,28 +1613,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.185275 -The maximum resident set size (KB) = 517588 +The total amount of wall time = 107.246909 +The maximum resident set size (KB) = 521968 Test 031 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 54.941189 -The maximum resident set size (KB) = 445400 +The total amount of wall time = 114.837253 +The maximum resident set size (KB) = 496444 Test 032 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1696,14 +1645,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.004529 -The maximum resident set size (KB) = 518208 +The total amount of wall time = 124.640563 +The maximum resident set size (KB) = 517024 Test 033 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1718,14 +1667,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 157.965822 -The maximum resident set size (KB) = 510880 +The total amount of wall time = 183.963767 +The maximum resident set size (KB) = 511500 Test 034 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1740,14 +1689,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 151.598651 -The maximum resident set size (KB) = 515784 +The total amount of wall time = 185.975408 +The maximum resident set size (KB) = 511844 Test 035 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1794,14 +1743,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 256.154082 -The maximum resident set size (KB) = 1494060 +The total amount of wall time = 714.494157 +The maximum resident set size (KB) = 1496480 Test 036 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1840,14 +1789,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 114.331309 -The maximum resident set size (KB) = 700200 +The total amount of wall time = 126.970367 +The maximum resident set size (KB) = 704420 Test 037 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1894,14 +1843,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 226.062462 -The maximum resident set size (KB) = 1498844 +The total amount of wall time = 669.041844 +The maximum resident set size (KB) = 1500104 Test 038 control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1940,14 +1889,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 135.961280 -The maximum resident set size (KB) = 671704 +The total amount of wall time = 117.747972 +The maximum resident set size (KB) = 674220 Test 039 control_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1990,14 +1939,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 196.799849 -The maximum resident set size (KB) = 1485480 +The total amount of wall time = 409.465519 +The maximum resident set size (KB) = 1484052 Test 040 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2040,14 +1989,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.288513 -The maximum resident set size (KB) = 1576824 +The total amount of wall time = 299.729068 +The maximum resident set size (KB) = 1573040 Test 041 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2066,14 +2015,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 405.270999 -The maximum resident set size (KB) = 1486516 +The total amount of wall time = 730.941680 +The maximum resident set size (KB) = 1491364 Test 042 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2069,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.480894 -The maximum resident set size (KB) = 1547168 +The total amount of wall time = 342.888631 +The maximum resident set size (KB) = 1543340 Test 043 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2123,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 226.805239 -The maximum resident set size (KB) = 1492068 +The total amount of wall time = 436.988984 +The maximum resident set size (KB) = 1497056 Test 044 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2228,14 +2177,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.851718 -The maximum resident set size (KB) = 1499840 +The total amount of wall time = 623.517851 +The maximum resident set size (KB) = 1494512 Test 045 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2246,28 +2195,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 329.740797 -The maximum resident set size (KB) = 872908 +The total amount of wall time = 429.464882 +The maximum resident set size (KB) = 867700 Test 046 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 163.164123 -The maximum resident set size (KB) = 864916 +The total amount of wall time = 212.758058 +The maximum resident set size (KB) = 862404 Test 047 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2278,28 +2227,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.104114 -The maximum resident set size (KB) = 868032 +The total amount of wall time = 495.888554 +The maximum resident set size (KB) = 868780 Test 048 regional_control_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_restart_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.598246 -The maximum resident set size (KB) = 867880 +The total amount of wall time = 182.032542 +The maximum resident set size (KB) = 864000 Test 049 regional_restart_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2310,14 +2259,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.381906 -The maximum resident set size (KB) = 864624 +The total amount of wall time = 371.271248 +The maximum resident set size (KB) = 861240 Test 050 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2328,14 +2277,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 204.967777 -The maximum resident set size (KB) = 909312 +The total amount of wall time = 368.915935 +The maximum resident set size (KB) = 911464 Test 051 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2343,28 +2292,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 323.254997 -The maximum resident set size (KB) = 1140556 +The total amount of wall time = 410.081680 +The maximum resident set size (KB) = 1143084 Test 052 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 295.917538 -The maximum resident set size (KB) = 862220 +The total amount of wall time = 587.136261 +The maximum resident set size (KB) = 861580 Test 053 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2375,14 +2324,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.912267 -The maximum resident set size (KB) = 867192 +The total amount of wall time = 392.004736 +The maximum resident set size (KB) = 870344 Test 054 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2393,14 +2342,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 385.516583 -The maximum resident set size (KB) = 618800 +The total amount of wall time = 561.513364 +The maximum resident set size (KB) = 620568 Test 055 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2447,14 +2396,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.913283 -The maximum resident set size (KB) = 895004 +The total amount of wall time = 459.169980 +The maximum resident set size (KB) = 895412 Test 056 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2465,14 +2414,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.534877 -The maximum resident set size (KB) = 993004 +The total amount of wall time = 436.711513 +The maximum resident set size (KB) = 1001916 Test 057 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2519,14 +2468,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.333463 -The maximum resident set size (KB) = 895664 +The total amount of wall time = 477.459676 +The maximum resident set size (KB) = 895084 Test 058 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2573,14 +2522,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.711811 -The maximum resident set size (KB) = 974324 +The total amount of wall time = 413.345715 +The maximum resident set size (KB) = 977764 Test 059 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2619,14 +2568,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.395901 -The maximum resident set size (KB) = 810152 +The total amount of wall time = 253.933898 +The maximum resident set size (KB) = 810028 Test 060 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2673,14 +2622,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 410.269067 -The maximum resident set size (KB) = 894240 +The total amount of wall time = 491.472663 +The maximum resident set size (KB) = 891876 Test 061 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2727,14 +2676,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 430.181963 -The maximum resident set size (KB) = 890848 +The total amount of wall time = 514.145392 +The maximum resident set size (KB) = 894572 Test 062 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2773,14 +2722,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.948151 -The maximum resident set size (KB) = 817448 +The total amount of wall time = 316.232244 +The maximum resident set size (KB) = 815912 Test 063 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2827,14 +2776,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 401.048923 -The maximum resident set size (KB) = 890880 +The total amount of wall time = 537.816253 +The maximum resident set size (KB) = 891516 Test 064 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2849,14 +2798,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.679906 -The maximum resident set size (KB) = 578720 +The total amount of wall time = 645.965933 +The maximum resident set size (KB) = 576292 Test 065 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2871,14 +2820,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 458.050238 -The maximum resident set size (KB) = 569512 +The total amount of wall time = 505.120188 +The maximum resident set size (KB) = 571108 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_gf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_gf_intel Checking test 067 hrrr_gf_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2925,14 +2874,14 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.129880 -The maximum resident set size (KB) = 894872 +The total amount of wall time = 444.038748 +The maximum resident set size (KB) = 897428 Test 067 hrrr_gf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_c3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_c3_intel Checking test 068 hrrr_c3_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2979,14 +2928,14 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.500277 -The maximum resident set size (KB) = 894956 +The total amount of wall time = 502.742598 +The maximum resident set size (KB) = 891500 Test 068 hrrr_c3_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmg_intel Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2997,14 +2946,14 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.416587 -The maximum resident set size (KB) = 579428 +The total amount of wall time = 374.619265 +The maximum resident set size (KB) = 584284 Test 069 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmgt_intel Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3015,14 +2964,14 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 355.057220 -The maximum resident set size (KB) = 581132 +The total amount of wall time = 400.845844 +The maximum resident set size (KB) = 580896 Test 070 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_ras_intel Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3033,26 +2982,26 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.976897 -The maximum resident set size (KB) = 550964 +The total amount of wall time = 220.179625 +The maximum resident set size (KB) = 549852 Test 071 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wam_intel Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.882328 -The maximum resident set size (KB) = 330896 +The total amount of wall time = 154.365281 +The maximum resident set size (KB) = 330936 Test 072 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_faster_intel Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3099,14 +3048,14 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.248862 -The maximum resident set size (KB) = 1490268 +The total amount of wall time = 345.078060 +The maximum resident set size (KB) = 1489228 Test 073 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_faster_intel Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3117,14 +3066,14 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.229230 -The maximum resident set size (KB) = 868032 +The total amount of wall time = 313.180752 +The maximum resident set size (KB) = 865404 Test 074 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_debug_intel Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3151,348 +3100,348 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.389876 -The maximum resident set size (KB) = 677392 +The total amount of wall time = 227.758810 +The maximum resident set size (KB) = 676152 Test 075 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wrtGauss_netcdf_parallel_debug_intel Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.438513 -The maximum resident set size (KB) = 677824 +The total amount of wall time = 244.499854 +The maximum resident set size (KB) = 672796 Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_debug_intel Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.206110 -The maximum resident set size (KB) = 681956 +The total amount of wall time = 367.057286 +The maximum resident set size (KB) = 680524 Test 077 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_lndp_debug_intel Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.655115 -The maximum resident set size (KB) = 677112 +The total amount of wall time = 219.930201 +The maximum resident set size (KB) = 678384 Test 078 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmg_debug_intel Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.428870 -The maximum resident set size (KB) = 716676 +The total amount of wall time = 301.502018 +The maximum resident set size (KB) = 714908 Test 079 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmgt_debug_intel Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.086698 -The maximum resident set size (KB) = 717264 +The total amount of wall time = 270.871511 +The maximum resident set size (KB) = 717168 Test 080 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_ras_debug_intel Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.287391 -The maximum resident set size (KB) = 690064 +The total amount of wall time = 178.528296 +The maximum resident set size (KB) = 692932 Test 081 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_diag_debug_intel Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.407029 -The maximum resident set size (KB) = 736240 +The total amount of wall time = 184.562180 +The maximum resident set size (KB) = 733292 Test 082 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_debug_p8_intel Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 193.582393 -The maximum resident set size (KB) = 1502104 +The total amount of wall time = 191.376762 +The maximum resident set size (KB) = 1499380 Test 083 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_debug_intel Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1041.596352 -The maximum resident set size (KB) = 886744 +The total amount of wall time = 1067.192946 +The maximum resident set size (KB) = 887980 Test 084 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_debug_intel Checking test 085 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.996811 -The maximum resident set size (KB) = 1054788 +The total amount of wall time = 303.152568 +The maximum resident set size (KB) = 1051388 Test 085 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_debug_intel Checking test 086 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.726991 -The maximum resident set size (KB) = 1052100 +The total amount of wall time = 324.361221 +The maximum resident set size (KB) = 1053632 Test 086 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.447784 -The maximum resident set size (KB) = 1056892 +The total amount of wall time = 308.057019 +The maximum resident set size (KB) = 1053712 Test 087 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.367476 -The maximum resident set size (KB) = 1140448 +The total amount of wall time = 330.348288 +The maximum resident set size (KB) = 1135508 Test 088 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.607078 -The maximum resident set size (KB) = 1052792 +The total amount of wall time = 331.767214 +The maximum resident set size (KB) = 1054056 Test 089 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.614965 -The maximum resident set size (KB) = 1054444 +The total amount of wall time = 317.674471 +The maximum resident set size (KB) = 1056260 Test 090 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.466663 -The maximum resident set size (KB) = 1052108 +The total amount of wall time = 321.651069 +The maximum resident set size (KB) = 1054696 Test 091 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.061617 -The maximum resident set size (KB) = 1055800 +The total amount of wall time = 326.098208 +The maximum resident set size (KB) = 1055624 Test 092 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.350130 -The maximum resident set size (KB) = 1055012 +The total amount of wall time = 333.471469 +The maximum resident set size (KB) = 1052740 Test 093 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.205321 -The maximum resident set size (KB) = 1055900 +The total amount of wall time = 318.675159 +The maximum resident set size (KB) = 1058264 Test 094 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.489366 -The maximum resident set size (KB) = 1054192 +The total amount of wall time = 490.808927 +The maximum resident set size (KB) = 1049988 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.376602 -The maximum resident set size (KB) = 1049204 +The total amount of wall time = 297.159399 +The maximum resident set size (KB) = 1051884 Test 096 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 354.558413 -The maximum resident set size (KB) = 1055524 +The total amount of wall time = 380.090643 +The maximum resident set size (KB) = 1055408 Test 097 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.681437 -The maximum resident set size (KB) = 1054412 +The total amount of wall time = 310.794542 +The maximum resident set size (KB) = 1056548 Test 098 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.688926 -The maximum resident set size (KB) = 507948 +The total amount of wall time = 309.240760 +The maximum resident set size (KB) = 357148 Test 099 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3503,14 +3452,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 230.699269 -The maximum resident set size (KB) = 895592 +The total amount of wall time = 246.740451 +The maximum resident set size (KB) = 895900 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3557,14 +3506,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.243298 -The maximum resident set size (KB) = 779544 +The total amount of wall time = 355.828232 +The maximum resident set size (KB) = 781928 Test 101 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3611,14 +3560,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.293058 -The maximum resident set size (KB) = 775084 +The total amount of wall time = 190.698636 +The maximum resident set size (KB) = 773476 Test 102 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3665,14 +3614,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 178.663442 -The maximum resident set size (KB) = 782348 +The total amount of wall time = 187.234611 +The maximum resident set size (KB) = 790408 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3719,14 +3668,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.465216 -The maximum resident set size (KB) = 835988 +The total amount of wall time = 329.758415 +The maximum resident set size (KB) = 833404 Test 104 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3773,14 +3722,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.901301 -The maximum resident set size (KB) = 826636 +The total amount of wall time = 173.862293 +The maximum resident set size (KB) = 823016 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3827,14 +3776,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.880050 -The maximum resident set size (KB) = 773364 +The total amount of wall time = 228.344339 +The maximum resident set size (KB) = 776576 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3873,42 +3822,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.071515 -The maximum resident set size (KB) = 706120 +The total amount of wall time = 265.322703 +The maximum resident set size (KB) = 703564 Test 107 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.286587 -The maximum resident set size (KB) = 662684 +The total amount of wall time = 108.093925 +The maximum resident set size (KB) = 666568 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_restart_qr_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 97.469474 -The maximum resident set size (KB) = 628648 +The total amount of wall time = 102.865889 +The maximum resident set size (KB) = 630528 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3924,40 +3873,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 131.633999 -The maximum resident set size (KB) = 1056800 +The total amount of wall time = 169.790044 +The maximum resident set size (KB) = 1059532 Test 110 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 69.483723 -The maximum resident set size (KB) = 1066664 +The total amount of wall time = 85.702150 +The maximum resident set size (KB) = 1062140 Test 111 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 87.644419 -The maximum resident set size (KB) = 952828 +The total amount of wall time = 120.993384 +The maximum resident set size (KB) = 953228 Test 112 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4004,123 +3953,123 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.366048 -The maximum resident set size (KB) = 812632 +The total amount of wall time = 258.719017 +The maximum resident set size (KB) = 809232 Test 113 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.429499 -The maximum resident set size (KB) = 941872 +The total amount of wall time = 297.943236 +The maximum resident set size (KB) = 939656 Test 114 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.867641 -The maximum resident set size (KB) = 940556 +The total amount of wall time = 309.588701 +The maximum resident set size (KB) = 932132 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 908.768841 -The maximum resident set size (KB) = 1088532 +The total amount of wall time = 903.735832 +The maximum resident set size (KB) = 1084408 Test 116 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_debug_2threads_intel Checking test 117 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 526.025499 -The maximum resident set size (KB) = 1095004 +The total amount of wall time = 527.420571 +The maximum resident set size (KB) = 1097636 Test 117 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_radar_tten_debug_intel Checking test 118 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 906.684424 -The maximum resident set size (KB) = 1156172 +The total amount of wall time = 929.027631 +The maximum resident set size (KB) = 1155940 Test 118 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn64_phy32_debug_intel Checking test 119 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.659335 -The maximum resident set size (KB) = 956168 +The total amount of wall time = 316.349041 +The maximum resident set size (KB) = 953700 Test 119 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_intel Checking test 120 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 258.093553 -The maximum resident set size (KB) = 1120200 +The total amount of wall time = 289.570858 +The maximum resident set size (KB) = 1112976 Test 120 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_thompson_gfdlsf_intel Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 299.154949 -The maximum resident set size (KB) = 1495764 +The total amount of wall time = 327.763631 +The maximum resident set size (KB) = 1474992 Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_ocn_intel Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4129,14 +4078,14 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 388.132167 -The maximum resident set size (KB) = 1113300 +The total amount of wall time = 412.064572 +The maximum resident set size (KB) = 1102312 Test 122 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_wav_intel Checking test 123 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4145,14 +4094,14 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 712.394483 -The maximum resident set size (KB) = 1186804 +The total amount of wall time = 741.143094 +The maximum resident set size (KB) = 1192336 Test 123 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_ocn_wav_intel Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4163,14 +4112,14 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 904.777963 -The maximum resident set size (KB) = 1160504 +The total amount of wall time = 1176.454410 +The maximum resident set size (KB) = 1166716 Test 124 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_1nest_atm_intel Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4192,14 +4141,14 @@ Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 315.111575 -The maximum resident set size (KB) = 533584 +The total amount of wall time = 317.727592 +The maximum resident set size (KB) = 534604 Test 125 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_1nest_atm_qr_intel Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4221,14 +4170,14 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 335.990055 -The maximum resident set size (KB) = 383164 +The total amount of wall time = 410.531750 +The maximum resident set size (KB) = 383620 Test 126 hafs_regional_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4237,14 +4186,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 380.779507 -The maximum resident set size (KB) = 541652 +The total amount of wall time = 388.189400 +The maximum resident set size (KB) = 531248 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4291,14 +4240,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 165.072983 -The maximum resident set size (KB) = 507948 +The total amount of wall time = 165.434511 +The maximum resident set size (KB) = 428536 Test 128 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_1nest_atm_qr_intel Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4345,14 +4294,14 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 173.386334 -The maximum resident set size (KB) = 451632 +The total amount of wall time = 208.720256 +The maximum resident set size (KB) = 285856 Test 129 hafs_global_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_multiple_4nests_atm_intel Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4434,14 +4383,14 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 470.792669 -The maximum resident set size (KB) = 375912 +The total amount of wall time = 614.517291 +The maximum resident set size (KB) = 376680 Test 130 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_multiple_4nests_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_multiple_4nests_atm_qr_intel Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4523,14 +4472,14 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 530.567656 -The maximum resident set size (KB) = 378848 +The total amount of wall time = 720.982054 +The maximum resident set size (KB) = 380440 Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_specified_moving_1nest_atm_intel Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,14 +4488,14 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.602269 -The maximum resident set size (KB) = 548100 +The total amount of wall time = 226.059128 +The maximum resident set size (KB) = 547852 Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_intel Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4568,14 +4517,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 201.887004 -The maximum resident set size (KB) = 555412 +The total amount of wall time = 219.502472 +The maximum resident set size (KB) = 550384 Test 133 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_qr_intel Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4597,14 +4546,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 230.767008 -The maximum resident set size (KB) = 416912 +The total amount of wall time = 370.813974 +The maximum resident set size (KB) = 416972 Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4613,42 +4562,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.622127 -The maximum resident set size (KB) = 596336 +The total amount of wall time = 373.656151 +The maximum resident set size (KB) = 610160 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.319133 -The maximum resident set size (KB) = 323288 +The total amount of wall time = 107.367471 +The maximum resident set size (KB) = 321140 Test 136 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 806.692064 -The maximum resident set size (KB) = 626624 +The total amount of wall time = 1051.653995 +The maximum resident set size (KB) = 601524 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4659,14 +4608,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 508.637282 -The maximum resident set size (KB) = 666208 +The total amount of wall time = 746.487179 +The maximum resident set size (KB) = 652424 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_atmlnd_sbs_intel Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4751,14 +4700,14 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 238.229243 -The maximum resident set size (KB) = 1554076 +The total amount of wall time = 317.486252 +The maximum resident set size (KB) = 1547512 Test 139 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_intel Checking test 140 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4802,14 +4751,14 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.671350 -The maximum resident set size (KB) = 2824672 +The total amount of wall time = 310.252709 +The maximum resident set size (KB) = 2823388 Test 140 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_rad_intel Checking test 141 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4853,14 +4802,14 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.444027 -The maximum resident set size (KB) = 2889528 +The total amount of wall time = 330.732005 +The maximum resident set size (KB) = 2888072 Test 141 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_rad_micro_intel Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4904,37 +4853,18 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.379413 -The maximum resident set size (KB) = 2898672 +The total amount of wall time = 350.513116 +The maximum resident set size (KB) = 2897032 Test 142 atmaero_control_p8_rad_micro_intel PASS +Test 143 regional_atmaq_intel FAIL -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_atmaq_intel -Checking test 143 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 685.944178 -The maximum resident set size (KB) = 5323432 - -Test 143 regional_atmaq_intel PASS +Test 143 regional_atmaq_intel FAIL baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_50965/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_atmaq_debug_intel Checking test 144 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4948,12 +4878,15 @@ Checking test 144 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1337.824676 -The maximum resident set size (KB) = 4827464 +The total amount of wall time = 1701.717411 +The maximum resident set size (KB) = 4827964 Test 144 regional_atmaq_debug_intel PASS +FAILED TESTS: +cpld_restart_bmark_p8_intel 012 failed in run_test +regional_atmaq_intel 143 failed in run_test -REGRESSION TEST WAS SUCCESSFUL -Mon Sep 25 19:07:19 UTC 2023 -Elapsed time: 01h:11m:48s. Have a nice day! +REGRESSION TEST FAILED +Thu Sep 28 15:19:58 UTC 2023 +Elapsed time: 02h:11m:21s. Have a nice day! From 41811b8a01cd1a2fb069290a261a6868b3d5fda6 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:15:07 -0400 Subject: [PATCH 06/10] Quartet of bug fixes for: c3 scheme, quilting restart with 32-bit physics, and string length mismatch in dycore (plus PR #1913, #1917, and #1926) (#1893) * GFDL_atmos_cubed_sphere: consistent string lengths in array * stop FV3_HRRR_c3 from crashing with gnu debug * 1hr forecast limit for conus13km_debug_qr * fv3atm: bug fix from Dusan to recover_fields crash * disable conus13km_debug_qr_gnu due to 25% failure rate on Hera * FV3 dycore: initialize srf_wnd_var2 and tracers_var3 arrays * enable conus13km_debug_qr_gnu * Fix race condition in GFS_phys_time_vary.fv3.F90 error detection * More bug fixes to GFS_phys_time_vary.fv3.F90: 1. detect empty errmsg from subroutines 2. Initialize err variables in set_soilveg.f, which is called from GFS_phys_time_vary.fv3.F90 * ccpp-physics: initialize errmsg & errflg in noahmp_tables.f90 * ccpp-physics: only read h2odata, ozdata and noahmp table when they are needed * "point to the dimension fix of smc for dust emission" * FV3: more dycore bug fixes from GFDL_atmos_cubed_sphere PR 285 * merge #1926 * merge GFDL_atmos_cubed_sphere #276 * bugfix: 12hr hrrr tests * add GAEA rocoto support * fv3: merge GF radar fixes * check that baseline directory exists and is non-empty --------- Co-authored-by: Haiqin.Li --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/default_vars.sh | 1 + tests/logs/OpnReqTests_control_p8_hera.log | 54 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 26 +- .../OpnReqTests_regional_control_hera.log | 26 +- tests/logs/RegressionTests_acorn.log | 1830 ++-- tests/logs/RegressionTests_cheyenne.log | 7948 ++++++++--------- tests/logs/RegressionTests_gaea.log | 1948 ++-- tests/logs/RegressionTests_hera.log | 2748 +++--- tests/logs/RegressionTests_hercules.log | 2696 +++--- tests/logs/RegressionTests_jet.log | 1622 ++-- tests/logs/RegressionTests_orion.log | 2036 ++--- tests/logs/RegressionTests_wcoss2.log | 1901 ++-- tests/rt.conf | 54 +- tests/rt.sh | 34 + tests/rt_utils.sh | 30 + tests/tests/conus13km_debug | 9 +- ...onus13km_control_qr => conus13km_debug_qr} | 5 +- tests/tests/conus13km_restart_qr | 21 - tests/tests/conus13km_restart_qr_mismatch | 21 - tests/tests/hrrr_c3 | 63 - tests/tests/hrrr_c3_debug | 24 + tests/tests/hrrr_gf | 63 - tests/tests/hrrr_gf_debug | 24 + 25 files changed, 11497 insertions(+), 11691 deletions(-) rename tests/tests/{conus13km_control_qr => conus13km_debug_qr} (91%) delete mode 100644 tests/tests/conus13km_restart_qr delete mode 100644 tests/tests/conus13km_restart_qr_mismatch delete mode 100644 tests/tests/hrrr_c3 create mode 100644 tests/tests/hrrr_c3_debug delete mode 100644 tests/tests/hrrr_gf create mode 100644 tests/tests/hrrr_gf_debug diff --git a/FV3 b/FV3 index 3b4423cde8..bba7da5dcb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3b4423cde80275355cc088f977f5b36d9b8ae859 +Subproject commit bba7da5dcbb12f5de3e154cf2dfc318bdcd4fbf9 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 324b2b52ae..584b9983bd 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20230922 +export BL_DATE=20231002 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bbb4770ec4..75200ce752 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1327,6 +1327,7 @@ export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 +export FHMAX=12 export FRAC_GRID=.false. export FRAC_ICE=.true. diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 55f4c841a5..cec46b546c 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,12 +1,12 @@ -Thu Sep 28 06:19:01 UTC 2023 +Thu Sep 28 21:48:32 UTC 2023 Start Operation Requirement Test -Compile bit elapsed time 200 seconds. -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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile dbg elapsed time 104 seconds. -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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile std elapsed time 199 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile bit elapsed time 204 seconds. -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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile dbg elapsed time 107 seconds. -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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile std elapsed time 205 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -54,14 +54,14 @@ Moving baseline bit_base control_p8_gnu 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 = 296.142721 - 0: The maximum resident set size (KB) = 1288112 + 0: The total amount of wall time = 296.374253 + 0: The maximum resident set size (KB) = 1292332 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -109,14 +109,14 @@ Moving baseline dbg_base control_p8_gnu 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 = 981.239219 - 0: The maximum resident set size (KB) = 1281056 + 0: The total amount of wall time = 993.563417 + 0: The maximum resident set size (KB) = 1282092 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -163,14 +163,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.993791 - 0: The maximum resident set size (KB) = 1271608 + 0: The total amount of wall time = 262.808211 + 0: The maximum resident set size (KB) = 1270520 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -217,14 +217,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 261.821420 - 0: The maximum resident set size (KB) = 1272220 + 0: The total amount of wall time = 268.679158 + 0: The maximum resident set size (KB) = 1272352 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -271,14 +271,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.397416 - 0: The maximum resident set size (KB) = 1272888 + 0: The total amount of wall time = 260.067262 + 0: The maximum resident set size (KB) = 1274240 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -326,14 +326,14 @@ Moving baseline std_base control_p8_gnu 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 = 264.007621 - 0: The maximum resident set size (KB) = 1272592 + 0: The total amount of wall time = 263.023352 + 0: The maximum resident set size (KB) = 1271516 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_14060/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_27762/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -380,11 +380,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 264.748647 - 0: The maximum resident set size (KB) = 1271232 + 0: The total amount of wall time = 269.517142 + 0: The maximum resident set size (KB) = 1271620 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 28 06:43:18 UTC 2023 -Elapsed time: 00h:24m:18s. Have a nice day! +Thu Sep 28 22:11:54 UTC 2023 +Elapsed time: 00h:23m:23s. 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 cf5e3f74cd..de829ed01d 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,11 +1,11 @@ -Thu Sep 28 06:24:59 UTC 2023 +Thu Sep 28 21:50:19 UTC 2023 Start Operation Requirement Test Compile dbg elapsed time 118 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile std elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile std elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_29412/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -68,14 +68,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu 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 = 1338.997302 - 0: The maximum resident set size (KB) = 1411472 + 0: The total amount of wall time = 1344.688199 + 0: The maximum resident set size (KB) = 1416032 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_29412/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -137,14 +137,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 406.961254 - 0: The maximum resident set size (KB) = 1404968 + 0: The total amount of wall time = 414.121734 + 0: The maximum resident set size (KB) = 1398040 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_25055/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_29412/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -207,11 +207,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu 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 = 410.847589 - 0: The maximum resident set size (KB) = 1403172 + 0: The total amount of wall time = 412.414378 + 0: The maximum resident set size (KB) = 1384124 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 28 06:54:27 UTC 2023 -Elapsed time: 00h:29m:29s. Have a nice day! +Thu Sep 28 22:19:36 UTC 2023 +Elapsed time: 00h:29m:18s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index a335239581..f331d12071 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,10 +1,10 @@ -Thu Sep 28 06:30:35 UTC 2023 +Thu Sep 28 21:52:18 UTC 2023 Start Operation Requirement Test -Compile std elapsed time 201 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile std elapsed time 204 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_31058/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -15,14 +15,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 513.747809 - 0: The maximum resident set size (KB) = 804952 + 0: The total amount of wall time = 513.311871 + 0: The maximum resident set size (KB) = 812328 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_31058/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -34,14 +34,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 505.577903 - 0: The maximum resident set size (KB) = 805676 + 0: The total amount of wall time = 515.195176 + 0: The maximum resident set size (KB) = 807004 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_4490/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_OPNREQ_TEST/opnReqTest_31058/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -52,11 +52,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 516.790745 - 0: The maximum resident set size (KB) = 807676 + 0: The total amount of wall time = 508.059579 + 0: The maximum resident set size (KB) = 807656 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Sep 28 06:59:22 UTC 2023 -Elapsed time: 00h:28m:48s. Have a nice day! +Thu Sep 28 22:19:53 UTC 2023 +Elapsed time: 00h:27m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 65ee36488b..b180aa5360 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,55 +1,55 @@ -Thu Sep 28 13:05:15 UTC 2023 +Mon Oct 2 19:09:03 UTC 2023 Start Regression test -Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 +Testing UFSWM Hash: 42dfe840256d92314818aaff6d27f46c8a91d1db Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atmaero_intel elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 474 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 854 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1052 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 610 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 812 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 746 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 506 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 287 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 616 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 77 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 592 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 823 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 621 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 664 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 905 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1718 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1083 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 556 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1361 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 558 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 537 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_mixedmode_intel + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 690 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 264 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 596 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 329 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 731 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 663 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 492 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 490 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 345 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 647 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 197 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 528 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 485 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 798 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 781 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 886 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 774 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1115 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 772 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1321 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 869 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 561 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1233 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -114,14 +114,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.319011 -The maximum resident set size (KB) = 2965960 +The total amount of wall time = 323.009611 +The maximum resident set size (KB) = 2966200 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -185,14 +185,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 244.654937 -The maximum resident set size (KB) = 1568336 +The total amount of wall time = 241.311854 +The maximum resident set size (KB) = 1567464 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -257,14 +257,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.950575 -The maximum resident set size (KB) = 2995716 +The total amount of wall time = 385.686635 +The maximum resident set size (KB) = 2996064 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -317,14 +317,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 218.486875 -The maximum resident set size (KB) = 3056448 +The total amount of wall time = 219.429411 +The maximum resident set size (KB) = 3056556 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +389,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.881399 -The maximum resident set size (KB) = 3009888 +The total amount of wall time = 386.183003 +The maximum resident set size (KB) = 3021996 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 222.227916 -The maximum resident set size (KB) = 2895144 +The total amount of wall time = 224.775825 +The maximum resident set size (KB) = 2912064 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -509,14 +509,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.993211 -The maximum resident set size (KB) = 3302724 +The total amount of wall time = 338.188411 +The maximum resident set size (KB) = 3301412 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -569,14 +569,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.668860 -The maximum resident set size (KB) = 2995688 +The total amount of wall time = 378.653166 +The maximum resident set size (KB) = 2996880 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -629,14 +629,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 311.588126 -The maximum resident set size (KB) = 2930084 +The total amount of wall time = 319.861164 +The maximum resident set size (KB) = 2926484 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -701,14 +701,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.862629 -The maximum resident set size (KB) = 2998120 +The total amount of wall time = 384.040222 +The maximum resident set size (KB) = 2995732 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -772,14 +772,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 274.190987 -The maximum resident set size (KB) = 1580344 +The total amount of wall time = 271.706943 +The maximum resident set size (KB) = 1579784 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -841,14 +841,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 290.214927 -The maximum resident set size (KB) = 1634856 +The total amount of wall time = 286.373575 +The maximum resident set size (KB) = 1641992 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_noaero_p8_agrid_intel Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 013 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 285.071148 -The maximum resident set size (KB) = 1633784 +The total amount of wall time = 287.367502 +The maximum resident set size (KB) = 1641944 Test 013 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_c48_intel Checking test 014 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 014 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 425.700951 -The maximum resident set size (KB) = 2651064 +The total amount of wall time = 430.160595 +The maximum resident set size (KB) = 2653912 Test 014 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/cpld_control_p8_faster_intel Checking test 015 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 015 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.825365 -The maximum resident set size (KB) = 2998908 +The total amount of wall time = 367.587547 +The maximum resident set size (KB) = 2996060 Test 015 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_flake_intel Checking test 016 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.278814 -The maximum resident set size (KB) = 565004 +The total amount of wall time = 212.997612 +The maximum resident set size (KB) = 564496 Test 016 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_CubedSphereGrid_intel Checking test 017 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 017 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.572893 -The maximum resident set size (KB) = 515584 +The total amount of wall time = 129.839460 +The maximum resident set size (KB) = 518784 Test 017 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_CubedSphereGrid_parallel_intel Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1113,14 +1113,14 @@ Checking test 018 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.856969 -The maximum resident set size (KB) = 521004 +The total amount of wall time = 135.216103 +The maximum resident set size (KB) = 525132 Test 018 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_latlon_intel Checking test 019 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.153582 -The maximum resident set size (KB) = 518796 +The total amount of wall time = 131.395767 +The maximum resident set size (KB) = 518188 Test 019 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_wrtGauss_netcdf_parallel_intel Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1149,14 +1149,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.747719 -The maximum resident set size (KB) = 521644 +The total amount of wall time = 133.734219 +The maximum resident set size (KB) = 520252 Test 020 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_c48_intel Checking test 021 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 021 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.517276 -The maximum resident set size (KB) = 675556 +The total amount of wall time = 327.823215 +The maximum resident set size (KB) = 676564 Test 021 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_c192_intel Checking test 022 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1213,14 +1213,14 @@ Checking test 022 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 524.389607 -The maximum resident set size (KB) = 621360 +The total amount of wall time = 525.405455 +The maximum resident set size (KB) = 620768 Test 022 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_c384_intel Checking test 023 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1231,14 +1231,14 @@ Checking test 023 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 558.662673 -The maximum resident set size (KB) = 1066848 +The total amount of wall time = 561.004029 +The maximum resident set size (KB) = 1069936 Test 023 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_c384gdas_intel Checking test 024 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 024 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 491.053796 -The maximum resident set size (KB) = 1169424 +The total amount of wall time = 492.526959 +The maximum resident set size (KB) = 1174644 Test 024 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_stochy_intel Checking test 025 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1299,28 +1299,28 @@ Checking test 025 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.184191 -The maximum resident set size (KB) = 523448 +The total amount of wall time = 89.146155 +The maximum resident set size (KB) = 521996 Test 025 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_stochy_restart_intel Checking test 026 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.599764 -The maximum resident set size (KB) = 351692 +The total amount of wall time = 48.384084 +The maximum resident set size (KB) = 354908 Test 026 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_lndp_intel Checking test 027 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,14 +1331,14 @@ Checking test 027 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.756597 -The maximum resident set size (KB) = 522796 +The total amount of wall time = 83.217648 +The maximum resident set size (KB) = 526216 Test 027 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_iovr4_intel Checking test 028 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1353,14 +1353,14 @@ Checking test 028 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.321705 -The maximum resident set size (KB) = 522784 +The total amount of wall time = 133.222072 +The maximum resident set size (KB) = 515992 Test 028 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_iovr5_intel Checking test 029 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1375,14 +1375,14 @@ Checking test 029 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.138042 -The maximum resident set size (KB) = 515264 +The total amount of wall time = 134.388659 +The maximum resident set size (KB) = 521948 Test 029 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_intel Checking test 030 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 030 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.304434 -The maximum resident set size (KB) = 1488692 +The total amount of wall time = 170.959650 +The maximum resident set size (KB) = 1488784 Test 030 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_restart_p8_intel Checking test 031 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1475,14 +1475,14 @@ Checking test 031 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 92.625905 -The maximum resident set size (KB) = 703340 +The total amount of wall time = 92.272356 +The maximum resident set size (KB) = 702536 Test 031 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_qr_p8_intel Checking test 032 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 032 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 170.028535 -The maximum resident set size (KB) = 1502960 +The total amount of wall time = 171.787501 +The maximum resident set size (KB) = 1509524 Test 032 control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_restart_qr_p8_intel Checking test 033 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1575,14 +1575,14 @@ Checking test 033 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 93.657967 -The maximum resident set size (KB) = 674140 +The total amount of wall time = 93.995083 +The maximum resident set size (KB) = 675096 Test 033 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_decomp_p8_intel Checking test 034 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 034 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.050617 -The maximum resident set size (KB) = 1494232 +The total amount of wall time = 173.967130 +The maximum resident set size (KB) = 1484960 Test 034 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_2threads_p8_intel Checking test 035 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 035 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 146.823651 -The maximum resident set size (KB) = 1574568 +The total amount of wall time = 147.923781 +The maximum resident set size (KB) = 1573884 Test 035 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_lndp_intel Checking test 036 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1701,14 +1701,14 @@ Checking test 036 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 308.177935 -The maximum resident set size (KB) = 1499420 +The total amount of wall time = 308.576529 +The maximum resident set size (KB) = 1487340 Test 036 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_rrtmgp_intel Checking test 037 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 037 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 224.578842 -The maximum resident set size (KB) = 1551548 +The total amount of wall time = 225.380003 +The maximum resident set size (KB) = 1551496 Test 037 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_mynn_intel Checking test 038 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 038 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 171.844716 -The maximum resident set size (KB) = 1502216 +The total amount of wall time = 172.686946 +The maximum resident set size (KB) = 1493560 Test 038 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/merra2_thompson_intel Checking test 039 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1863,14 +1863,14 @@ Checking test 039 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.900308 -The maximum resident set size (KB) = 1497572 +The total amount of wall time = 195.210818 +The maximum resident set size (KB) = 1499184 Test 039 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_control_intel Checking test 040 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1881,28 +1881,28 @@ Checking test 040 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.248059 -The maximum resident set size (KB) = 871392 +The total amount of wall time = 277.836905 +The maximum resident set size (KB) = 870096 Test 040 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_restart_intel Checking test 041 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 144.485574 -The maximum resident set size (KB) = 864408 +The total amount of wall time = 147.368189 +The maximum resident set size (KB) = 863464 Test 041 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_control_qr_intel Checking test 042 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 042 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 275.799600 -The maximum resident set size (KB) = 870392 +The total amount of wall time = 276.720105 +The maximum resident set size (KB) = 870404 Test 042 regional_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_restart_qr_intel Checking test 043 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 146.420911 -The maximum resident set size (KB) = 870436 +The total amount of wall time = 148.422384 +The maximum resident set size (KB) = 869824 Test 043 regional_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_decomp_intel Checking test 044 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 044 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.388155 -The maximum resident set size (KB) = 866908 +The total amount of wall time = 290.878496 +The maximum resident set size (KB) = 871000 Test 044 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_2threads_intel Checking test 045 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1963,14 +1963,14 @@ Checking test 045 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.857539 -The maximum resident set size (KB) = 908392 +The total amount of wall time = 162.647206 +The maximum resident set size (KB) = 908712 Test 045 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_noquilt_intel Checking test 046 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1978,14 +1978,14 @@ Checking test 046 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 274.893215 -The maximum resident set size (KB) = 1141028 +The total amount of wall time = 276.555227 +The maximum resident set size (KB) = 1143984 Test 046 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_2dwrtdecomp_intel Checking test 047 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1996,14 +1996,14 @@ Checking test 047 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.037203 -The maximum resident set size (KB) = 874080 +The total amount of wall time = 276.147787 +The maximum resident set size (KB) = 872164 Test 047 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_wofs_intel Checking test 048 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2014,14 +2014,14 @@ Checking test 048 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 354.652165 -The maximum resident set size (KB) = 622824 +The total amount of wall time = 352.890165 +The maximum resident set size (KB) = 624112 Test 048 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_ifi_control_intel Checking test 049 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2032,14 +2032,14 @@ Checking test 049 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 307.743435 -The maximum resident set size (KB) = 869440 +The total amount of wall time = 309.483071 +The maximum resident set size (KB) = 870500 Test 049 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_ifi_decomp_intel Checking test 050 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 050 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.097053 -The maximum resident set size (KB) = 866332 +The total amount of wall time = 324.320996 +The maximum resident set size (KB) = 867920 Test 050 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_ifi_2threads_intel Checking test 051 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 051 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 187.470811 -The maximum resident set size (KB) = 906048 +The total amount of wall time = 184.148488 +The maximum resident set size (KB) = 917572 Test 051 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_intel Checking test 052 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 052 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.387668 -The maximum resident set size (KB) = 903180 +The total amount of wall time = 404.611345 +The maximum resident set size (KB) = 901216 Test 052 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_spp_sppt_shum_skeb_intel Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 053 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.721579 -The maximum resident set size (KB) = 1003420 +The total amount of wall time = 233.110570 +The maximum resident set size (KB) = 999856 Test 053 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_decomp_intel Checking test 054 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2194,14 +2194,14 @@ Checking test 054 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.498965 -The maximum resident set size (KB) = 898084 +The total amount of wall time = 418.040189 +The maximum resident set size (KB) = 901872 Test 054 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_2threads_intel Checking test 055 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 055 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 361.512258 -The maximum resident set size (KB) = 980580 +The total amount of wall time = 363.191544 +The maximum resident set size (KB) = 979464 Test 055 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_restart_intel Checking test 056 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2294,14 +2294,14 @@ Checking test 056 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.781803 -The maximum resident set size (KB) = 811696 +The total amount of wall time = 204.376440 +The maximum resident set size (KB) = 813296 Test 056 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_sfcdiff_intel Checking test 057 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2348,14 @@ Checking test 057 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.001074 -The maximum resident set size (KB) = 901572 +The total amount of wall time = 404.449840 +The maximum resident set size (KB) = 898852 Test 057 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_sfcdiff_decomp_intel Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 058 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.058099 -The maximum resident set size (KB) = 897604 +The total amount of wall time = 419.767561 +The maximum resident set size (KB) = 903692 Test 058 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_sfcdiff_restart_intel Checking test 059 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 059 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.803371 -The maximum resident set size (KB) = 819716 +The total amount of wall time = 298.705555 +The maximum resident set size (KB) = 816460 Test 059 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_intel Checking test 060 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2502,14 +2502,14 @@ Checking test 060 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 385.469805 -The maximum resident set size (KB) = 901268 +The total amount of wall time = 205.703856 +The maximum resident set size (KB) = 897208 Test 060 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_qr_intel Checking test 061 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 061 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 384.102866 -The maximum resident set size (KB) = 909336 +The total amount of wall time = 206.126118 +The maximum resident set size (KB) = 914032 Test 061 hrrr_control_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_decomp_intel Checking test 062 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2610,14 +2610,14 @@ Checking test 062 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 397.705269 -The maximum resident set size (KB) = 895884 +The total amount of wall time = 210.353282 +The maximum resident set size (KB) = 895640 Test 062 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_2threads_intel Checking test 063 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2664,42 +2664,42 @@ Checking test 063 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.848879 -The maximum resident set size (KB) = 972740 +The total amount of wall time = 182.526478 +The maximum resident set size (KB) = 968616 Test 063 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_restart_intel Checking test 064 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 285.845781 -The maximum resident set size (KB) = 770392 +The total amount of wall time = 107.314365 +The maximum resident set size (KB) = 764896 Test 064 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_restart_qr_intel Checking test 065 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 288.626601 -The maximum resident set size (KB) = 677428 +The total amount of wall time = 109.517542 +The maximum resident set size (KB) = 664592 Test 065 hrrr_control_restart_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rrfs_v1beta_intel Checking test 066 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2746,14 +2746,14 @@ Checking test 066 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 394.937239 -The maximum resident set size (KB) = 896516 +The total amount of wall time = 396.375665 +The maximum resident set size (KB) = 898608 Test 066 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rrfs_v1nssl_intel Checking test 067 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 067 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.556407 -The maximum resident set size (KB) = 588336 +The total amount of wall time = 464.115276 +The maximum resident set size (KB) = 587792 Test 067 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rrfs_v1nssl_nohailnoccn_intel Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,123 +2790,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 450.582651 -The maximum resident set size (KB) = 575316 +The total amount of wall time = 451.236952 +The maximum resident set size (KB) = 576736 Test 068 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_gf_intel -Checking test 069 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 402.075749 -The maximum resident set size (KB) = 899432 - -Test 069 hrrr_gf_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_c3_intel -Checking test 070 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 404.597321 -The maximum resident set size (KB) = 899352 - -Test 070 hrrr_c3_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmg_intel -Checking test 071 control_csawmg_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_csawmg_intel +Checking test 069 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2916,15 +2808,15 @@ Checking test 071 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.252736 -The maximum resident set size (KB) = 585528 +The total amount of wall time = 332.401904 +The maximum resident set size (KB) = 584560 -Test 071 control_csawmg_intel PASS +Test 069 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmgt_intel -Checking test 072 control_csawmgt_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_csawmgt_intel +Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2934,15 +2826,15 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 328.788606 -The maximum resident set size (KB) = 582508 +The total amount of wall time = 328.967791 +The maximum resident set size (KB) = 585624 -Test 072 control_csawmgt_intel PASS +Test 070 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_ras_intel -Checking test 073 control_ras_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_ras_intel +Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2952,27 +2844,27 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.202505 -The maximum resident set size (KB) = 554372 +The total amount of wall time = 181.421934 +The maximum resident set size (KB) = 553412 -Test 073 control_ras_intel PASS +Test 071 control_ras_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wam_intel -Checking test 074 control_wam_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_wam_intel +Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 116.915801 -The maximum resident set size (KB) = 329848 +The total amount of wall time = 117.900250 +The maximum resident set size (KB) = 333084 -Test 074 control_wam_intel PASS +Test 072 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_faster_intel -Checking test 075 control_p8_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_faster_intel +Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3018,15 +2910,15 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.983646 -The maximum resident set size (KB) = 1491244 +The total amount of wall time = 167.472207 +The maximum resident set size (KB) = 1489128 -Test 075 control_p8_faster_intel PASS +Test 073 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_control_faster_intel -Checking test 076 regional_control_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_control_faster_intel +Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3036,15 +2928,15 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.915339 -The maximum resident set size (KB) = 867928 +The total amount of wall time = 270.729424 +The maximum resident set size (KB) = 867544 -Test 076 regional_control_faster_intel PASS +Test 074 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_CubedSphereGrid_debug_intel -Checking test 077 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_CubedSphereGrid_debug_intel +Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3070,348 +2962,376 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.967291 -The maximum resident set size (KB) = 676068 +The total amount of wall time = 159.622203 +The maximum resident set size (KB) = 676604 -Test 077 control_CubedSphereGrid_debug_intel PASS +Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.147171 -The maximum resident set size (KB) = 683868 +The total amount of wall time = 158.396364 +The maximum resident set size (KB) = 677240 -Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_stochy_debug_intel -Checking test 079 control_stochy_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_stochy_debug_intel +Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.971848 -The maximum resident set size (KB) = 685788 +The total amount of wall time = 180.009222 +The maximum resident set size (KB) = 690680 -Test 079 control_stochy_debug_intel PASS +Test 077 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_lndp_debug_intel -Checking test 080 control_lndp_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_lndp_debug_intel +Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.521068 -The maximum resident set size (KB) = 686944 +The total amount of wall time = 160.688160 +The maximum resident set size (KB) = 683692 -Test 080 control_lndp_debug_intel PASS +Test 078 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmg_debug_intel -Checking test 081 control_csawmg_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_csawmg_debug_intel +Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.320919 -The maximum resident set size (KB) = 717272 +The total amount of wall time = 250.408431 +The maximum resident set size (KB) = 720116 -Test 081 control_csawmg_debug_intel PASS +Test 079 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_csawmgt_debug_intel -Checking test 082 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_csawmgt_debug_intel +Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 244.869885 -The maximum resident set size (KB) = 721292 +The total amount of wall time = 247.017306 +The maximum resident set size (KB) = 721116 -Test 082 control_csawmgt_debug_intel PASS +Test 080 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_ras_debug_intel -Checking test 083 control_ras_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_ras_debug_intel +Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.586312 -The maximum resident set size (KB) = 699088 +The total amount of wall time = 162.508738 +The maximum resident set size (KB) = 693792 -Test 083 control_ras_debug_intel PASS +Test 081 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_diag_debug_intel -Checking test 084 control_diag_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_diag_debug_intel +Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.138861 -The maximum resident set size (KB) = 738264 +The total amount of wall time = 163.220511 +The maximum resident set size (KB) = 736904 -Test 084 control_diag_debug_intel PASS +Test 082 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_debug_p8_intel -Checking test 085 control_debug_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_debug_p8_intel +Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.651381 -The maximum resident set size (KB) = 1505168 +The total amount of wall time = 181.049761 +The maximum resident set size (KB) = 1506120 -Test 085 control_debug_p8_intel PASS +Test 083 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_debug_intel -Checking test 086 regional_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_debug_intel +Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1041.152192 -The maximum resident set size (KB) = 897408 +The total amount of wall time = 1041.452104 +The maximum resident set size (KB) = 894164 + +Test 084 regional_debug_intel PASS -Test 086 regional_debug_intel PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_debug_intel +Checking test 085 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 298.388676 +The maximum resident set size (KB) = 1062612 + +Test 085 rap_control_debug_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_debug_intel +Checking test 086 hrrr_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_debug_intel -Checking test 087 rap_control_debug_intel results .... +The total amount of wall time = 289.723277 +The maximum resident set size (KB) = 1054840 + +Test 086 hrrr_control_debug_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_gf_debug_intel +Checking test 087 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.228069 -The maximum resident set size (KB) = 1062876 +The total amount of wall time = 295.699886 +The maximum resident set size (KB) = 1057032 -Test 087 rap_control_debug_intel PASS +Test 087 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_debug_intel -Checking test 088 hrrr_control_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_c3_debug_intel +Checking test 088 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.246524 -The maximum resident set size (KB) = 1057988 +The total amount of wall time = 297.946242 +The maximum resident set size (KB) = 1057088 -Test 088 hrrr_control_debug_intel PASS +Test 088 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.775719 -The maximum resident set size (KB) = 1059668 +The total amount of wall time = 298.099444 +The maximum resident set size (KB) = 1062484 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.346865 -The maximum resident set size (KB) = 1145520 +The total amount of wall time = 308.235662 +The maximum resident set size (KB) = 1138292 Test 090 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.538925 -The maximum resident set size (KB) = 1058564 +The total amount of wall time = 305.222767 +The maximum resident set size (KB) = 1060532 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.366920 -The maximum resident set size (KB) = 1058504 +The total amount of wall time = 304.638404 +The maximum resident set size (KB) = 1055912 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.979786 -The maximum resident set size (KB) = 1061668 +The total amount of wall time = 300.201575 +The maximum resident set size (KB) = 1061492 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.658548 -The maximum resident set size (KB) = 1059100 +The total amount of wall time = 298.159151 +The maximum resident set size (KB) = 1060304 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.126914 -The maximum resident set size (KB) = 1059204 +The total amount of wall time = 295.062110 +The maximum resident set size (KB) = 1057620 Test 095 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.185631 -The maximum resident set size (KB) = 1058352 +The total amount of wall time = 297.986478 +The maximum resident set size (KB) = 1057320 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 483.089667 -The maximum resident set size (KB) = 1056852 +The total amount of wall time = 488.347825 +The maximum resident set size (KB) = 1058076 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.952438 -The maximum resident set size (KB) = 1058576 +The total amount of wall time = 293.032695 +The maximum resident set size (KB) = 1054944 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 351.470415 -The maximum resident set size (KB) = 1063672 +The total amount of wall time = 354.768837 +The maximum resident set size (KB) = 1057520 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.835741 -The maximum resident set size (KB) = 1062376 +The total amount of wall time = 298.469285 +The maximum resident set size (KB) = 1057564 Test 100 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.741897 -The maximum resident set size (KB) = 360548 +The total amount of wall time = 296.121929 +The maximum resident set size (KB) = 364232 Test 101 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3342,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 220.615134 -The maximum resident set size (KB) = 901136 +The total amount of wall time = 221.749733 +The maximum resident set size (KB) = 900300 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,14 +3396,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 332.446877 -The maximum resident set size (KB) = 781104 +The total amount of wall time = 334.546873 +The maximum resident set size (KB) = 777548 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3530,14 +3450,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.307648 -The maximum resident set size (KB) = 773400 +The total amount of wall time = 174.747393 +The maximum resident set size (KB) = 774412 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3504,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 175.016999 -The maximum resident set size (KB) = 789016 +The total amount of wall time = 175.202977 +The maximum resident set size (KB) = 791764 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3558,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.671881 -The maximum resident set size (KB) = 835636 +The total amount of wall time = 302.074754 +The maximum resident set size (KB) = 833920 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3612,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.107852 -The maximum resident set size (KB) = 824824 +The total amount of wall time = 156.603172 +The maximum resident set size (KB) = 824424 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3666,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.628925 -The maximum resident set size (KB) = 780676 +The total amount of wall time = 182.577206 +The maximum resident set size (KB) = 777444 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3792,42 +3712,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.977866 -The maximum resident set size (KB) = 709952 +The total amount of wall time = 247.216519 +The maximum resident set size (KB) = 708592 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.329543 -The maximum resident set size (KB) = 670416 +The total amount of wall time = 91.271752 +The maximum resident set size (KB) = 671868 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.954174 -The maximum resident set size (KB) = 640540 +The total amount of wall time = 93.604233 +The maximum resident set size (KB) = 631484 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3843,40 +3763,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 114.120104 -The maximum resident set size (KB) = 1063436 +The total amount of wall time = 115.092612 +The maximum resident set size (KB) = 1058744 Test 112 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 58.043088 -The maximum resident set size (KB) = 1066788 +The total amount of wall time = 57.850253 +The maximum resident set size (KB) = 1063972 Test 113 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.535510 -The maximum resident set size (KB) = 959972 +The total amount of wall time = 69.555301 +The maximum resident set size (KB) = 957672 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3923,124 +3843,152 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.240846 -The maximum resident set size (KB) = 811492 +The total amount of wall time = 226.952801 +The maximum resident set size (KB) = 814764 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.287825 -The maximum resident set size (KB) = 941596 +The total amount of wall time = 291.632777 +The maximum resident set size (KB) = 940516 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 280.864369 -The maximum resident set size (KB) = 944180 +The total amount of wall time = 285.200519 +The maximum resident set size (KB) = 947472 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 877.773590 -The maximum resident set size (KB) = 1093440 +The total amount of wall time = 883.053720 +The maximum resident set size (KB) = 1090756 Test 118 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_debug_2threads_intel -Checking test 119 conus13km_debug_2threads_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_debug_qr_intel +Checking test 119 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + +The total amount of wall time = 895.500757 +The maximum resident set size (KB) = 715756 + +Test 119 conus13km_debug_qr_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_debug_2threads_intel +Checking test 120 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 501.386798 -The maximum resident set size (KB) = 1104224 +The total amount of wall time = 505.141212 +The maximum resident set size (KB) = 1093448 -Test 119 conus13km_debug_2threads_intel PASS +Test 120 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/conus13km_radar_tten_debug_intel -Checking test 120 conus13km_radar_tten_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/conus13km_radar_tten_debug_intel +Checking test 121 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 876.550509 -The maximum resident set size (KB) = 1158752 +The total amount of wall time = 888.125507 +The maximum resident set size (KB) = 1165368 -Test 120 conus13km_radar_tten_debug_intel PASS +Test 121 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/rap_control_dyn64_phy32_debug_intel -Checking test 121 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/rap_control_dyn64_phy32_debug_intel +Checking test 122 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.120142 -The maximum resident set size (KB) = 958124 +The total amount of wall time = 296.578421 +The maximum resident set size (KB) = 963072 -Test 121 rap_control_dyn64_phy32_debug_intel PASS +Test 122 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_intel -Checking test 122 hafs_regional_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_atm_intel +Checking test 123 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 245.467301 -The maximum resident set size (KB) = 1122536 +The total amount of wall time = 248.227916 +The maximum resident set size (KB) = 1122240 -Test 122 hafs_regional_atm_intel PASS +Test 123 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 124 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 278.333287 -The maximum resident set size (KB) = 1481100 +The total amount of wall time = 277.499702 +The maximum resident set size (KB) = 1479676 -Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 124 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_ocn_intel -Checking test 124 hafs_regional_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_atm_ocn_intel +Checking test 125 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4048,15 +3996,15 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 374.677907 -The maximum resident set size (KB) = 1102124 +The total amount of wall time = 375.815936 +The maximum resident set size (KB) = 1100640 -Test 124 hafs_regional_atm_ocn_intel PASS +Test 125 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_wav_intel -Checking test 125 hafs_regional_atm_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_atm_wav_intel +Checking test 126 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4064,15 +4012,15 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 692.662563 -The maximum resident set size (KB) = 1195140 +The total amount of wall time = 690.723662 +The maximum resident set size (KB) = 1194988 -Test 125 hafs_regional_atm_wav_intel PASS +Test 126 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_atm_ocn_wav_intel -Checking test 126 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_atm_ocn_wav_intel +Checking test 127 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4082,15 +4030,15 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 883.029973 -The maximum resident set size (KB) = 1165468 +The total amount of wall time = 884.354744 +The maximum resident set size (KB) = 1166560 -Test 126 hafs_regional_atm_ocn_wav_intel PASS +Test 127 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_1nest_atm_intel -Checking test 127 hafs_regional_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_1nest_atm_intel +Checking test 128 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4111,15 +4059,15 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 304.323036 -The maximum resident set size (KB) = 540740 +The total amount of wall time = 306.642399 +The maximum resident set size (KB) = 541780 -Test 127 hafs_regional_1nest_atm_intel PASS +Test 128 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_1nest_atm_qr_intel -Checking test 128 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_1nest_atm_qr_intel +Checking test 129 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4140,15 +4088,15 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 320.433145 -The maximum resident set size (KB) = 390504 +The total amount of wall time = 323.633251 +The maximum resident set size (KB) = 386528 -Test 128 hafs_regional_1nest_atm_qr_intel PASS +Test 129 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_telescopic_2nests_atm_intel -Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_telescopic_2nests_atm_intel +Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4156,15 +4104,15 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 367.425073 -The maximum resident set size (KB) = 548352 +The total amount of wall time = 370.088648 +The maximum resident set size (KB) = 548420 -Test 129 hafs_regional_telescopic_2nests_atm_intel PASS +Test 130 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_1nest_atm_intel -Checking test 130 hafs_global_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_global_1nest_atm_intel +Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4210,15 +4158,15 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 158.688657 -The maximum resident set size (KB) = 308852 +The total amount of wall time = 159.372548 +The maximum resident set size (KB) = 311168 -Test 130 hafs_global_1nest_atm_intel PASS +Test 131 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_1nest_atm_qr_intel -Checking test 131 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_global_1nest_atm_qr_intel +Checking test 132 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4264,15 +4212,15 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 166.683312 -The maximum resident set size (KB) = 299136 +The total amount of wall time = 167.848993 +The maximum resident set size (KB) = 294672 -Test 131 hafs_global_1nest_atm_qr_intel PASS +Test 132 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_multiple_4nests_atm_intel -Checking test 132 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_global_multiple_4nests_atm_intel +Checking test 133 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4353,15 +4301,15 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 452.361626 -The maximum resident set size (KB) = 380980 +The total amount of wall time = 454.716233 +The maximum resident set size (KB) = 381900 -Test 132 hafs_global_multiple_4nests_atm_intel PASS +Test 133 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_multiple_4nests_atm_qr_intel -Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_global_multiple_4nests_atm_qr_intel +Checking test 134 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4442,15 +4390,15 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 491.592073 -The maximum resident set size (KB) = 390556 +The total amount of wall time = 497.315211 +The maximum resident set size (KB) = 391492 -Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 134 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_specified_moving_1nest_atm_intel -Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_specified_moving_1nest_atm_intel +Checking test 135 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4458,15 +4406,15 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 203.095306 -The maximum resident set size (KB) = 550880 +The total amount of wall time = 204.613753 +The maximum resident set size (KB) = 563208 -Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 135 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_storm_following_1nest_atm_intel +Checking test 136 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4487,15 +4435,15 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 189.711196 -The maximum resident set size (KB) = 551492 +The total amount of wall time = 191.199732 +The maximum resident set size (KB) = 556156 -Test 135 hafs_regional_storm_following_1nest_atm_intel PASS +Test 136 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4516,15 +4464,15 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.652709 -The maximum resident set size (KB) = 422620 +The total amount of wall time = 211.248866 +The maximum resident set size (KB) = 421016 -Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 137 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4532,43 +4480,43 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 245.834075 -The maximum resident set size (KB) = 620680 +The total amount of wall time = 244.487261 +The maximum resident set size (KB) = 617888 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_global_storm_following_1nest_atm_intel -Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_global_storm_following_1nest_atm_intel +Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 81.448165 -The maximum resident set size (KB) = 328408 +The total amount of wall time = 81.811696 +The maximum resident set size (KB) = 326732 -Test 138 hafs_global_storm_following_1nest_atm_intel PASS +Test 139 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 797.028483 -The maximum resident set size (KB) = 609008 +The total amount of wall time = 797.908796 +The maximum resident set size (KB) = 628984 -Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4578,162 +4526,162 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 497.686262 -The maximum resident set size (KB) = 662320 +The total amount of wall time = 496.935926 +The maximum resident set size (KB) = 664272 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_docn_intel -Checking test 141 hafs_regional_docn_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_docn_intel +Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 344.363410 -The maximum resident set size (KB) = 1131384 +The total amount of wall time = 345.752761 +The maximum resident set size (KB) = 1094160 -Test 141 hafs_regional_docn_intel PASS +Test 142 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_docn_oisst_intel -Checking test 142 hafs_regional_docn_oisst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_docn_oisst_intel +Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 346.780469 -The maximum resident set size (KB) = 1068516 +The total amount of wall time = 349.576463 +The maximum resident set size (KB) = 1074284 -Test 142 hafs_regional_docn_oisst_intel PASS +Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/hafs_regional_datm_cdeps_intel -Checking test 143 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/hafs_regional_datm_cdeps_intel +Checking test 144 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 943.663013 -The maximum resident set size (KB) = 886444 +The total amount of wall time = 945.998728 +The maximum resident set size (KB) = 824556 -Test 143 hafs_regional_datm_cdeps_intel PASS +Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_cfsr_intel -Checking test 144 datm_cdeps_control_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_control_cfsr_intel +Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.658771 -The maximum resident set size (KB) = 739384 +The total amount of wall time = 144.366651 +The maximum resident set size (KB) = 737828 -Test 144 datm_cdeps_control_cfsr_intel PASS +Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_restart_cfsr_intel -Checking test 145 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_restart_cfsr_intel +Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 89.357270 -The maximum resident set size (KB) = 727316 +The total amount of wall time = 90.157740 +The maximum resident set size (KB) = 726940 -Test 145 datm_cdeps_restart_cfsr_intel PASS +Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_gefs_intel -Checking test 146 datm_cdeps_control_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_control_gefs_intel +Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.164228 -The maximum resident set size (KB) = 617516 +The total amount of wall time = 134.749222 +The maximum resident set size (KB) = 620348 -Test 146 datm_cdeps_control_gefs_intel PASS +Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_iau_gefs_intel -Checking test 147 datm_cdeps_iau_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_iau_gefs_intel +Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.961539 -The maximum resident set size (KB) = 617800 +The total amount of wall time = 137.947195 +The maximum resident set size (KB) = 620956 -Test 147 datm_cdeps_iau_gefs_intel PASS +Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_stochy_gefs_intel -Checking test 148 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_stochy_gefs_intel +Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.103102 -The maximum resident set size (KB) = 621480 +The total amount of wall time = 138.657871 +The maximum resident set size (KB) = 622572 -Test 148 datm_cdeps_stochy_gefs_intel PASS +Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_ciceC_cfsr_intel -Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_ciceC_cfsr_intel +Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.727401 -The maximum resident set size (KB) = 740640 +The total amount of wall time = 144.203611 +The maximum resident set size (KB) = 740812 -Test 149 datm_cdeps_ciceC_cfsr_intel PASS +Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_bulk_cfsr_intel -Checking test 150 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_bulk_cfsr_intel +Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.845291 -The maximum resident set size (KB) = 740776 +The total amount of wall time = 145.229139 +The maximum resident set size (KB) = 727032 -Test 150 datm_cdeps_bulk_cfsr_intel PASS +Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_bulk_gefs_intel -Checking test 151 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_bulk_gefs_intel +Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.590652 -The maximum resident set size (KB) = 622360 +The total amount of wall time = 135.002354 +The maximum resident set size (KB) = 621644 -Test 151 datm_cdeps_bulk_gefs_intel PASS +Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_mx025_cfsr_intel -Checking test 152 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_mx025_cfsr_intel +Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4741,15 +4689,15 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 432.043060 -The maximum resident set size (KB) = 576296 +The total amount of wall time = 426.846978 +The maximum resident set size (KB) = 582576 -Test 152 datm_cdeps_mx025_cfsr_intel PASS +Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_mx025_gefs_intel -Checking test 153 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_mx025_gefs_intel +Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4757,65 +4705,65 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.762551 -The maximum resident set size (KB) = 569952 +The total amount of wall time = 426.856453 +The maximum resident set size (KB) = 567408 -Test 153 datm_cdeps_mx025_gefs_intel PASS +Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_multiple_files_cfsr_intel -Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_multiple_files_cfsr_intel +Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.663368 -The maximum resident set size (KB) = 741624 +The total amount of wall time = 143.318705 +The maximum resident set size (KB) = 738368 -Test 154 datm_cdeps_multiple_files_cfsr_intel PASS +Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_3072x1536_cfsr_intel -Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_3072x1536_cfsr_intel +Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 256.305451 -The maximum resident set size (KB) = 1984112 +The total amount of wall time = 259.852848 +The maximum resident set size (KB) = 1984840 -Test 155 datm_cdeps_3072x1536_cfsr_intel PASS +Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_gfs_intel -Checking test 156 datm_cdeps_gfs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_gfs_intel +Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 258.037676 -The maximum resident set size (KB) = 1986620 +The total amount of wall time = 259.405027 +The maximum resident set size (KB) = 1986324 -Test 156 datm_cdeps_gfs_intel PASS +Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_control_cfsr_faster_intel -Checking test 157 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_control_cfsr_faster_intel +Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.909957 -The maximum resident set size (KB) = 738600 +The total amount of wall time = 144.593632 +The maximum resident set size (KB) = 742044 -Test 157 datm_cdeps_control_cfsr_faster_intel PASS +Test 158 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_lnd_gswp3_intel -Checking test 158 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_lnd_gswp3_intel +Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4823,15 +4771,15 @@ Checking test 158 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 22.260923 -The maximum resident set size (KB) = 224780 +The total amount of wall time = 23.058415 +The maximum resident set size (KB) = 226396 -Test 158 datm_cdeps_lnd_gswp3_intel PASS +Test 159 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/datm_cdeps_lnd_gswp3_rst_intel -Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/datm_cdeps_lnd_gswp3_rst_intel +Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4839,15 +4787,15 @@ Checking test 159 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 26.569777 -The maximum resident set size (KB) = 221264 +The total amount of wall time = 26.551995 +The maximum resident set size (KB) = 228852 -Test 159 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_p8_atmlnd_sbs_intel -Checking test 160 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_p8_atmlnd_sbs_intel +Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4931,15 +4879,15 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 230.052451 -The maximum resident set size (KB) = 1550240 +The total amount of wall time = 228.078501 +The maximum resident set size (KB) = 1555748 -Test 160 control_p8_atmlnd_sbs_intel PASS +Test 161 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmwav_control_noaero_p8_intel -Checking test 161 atmwav_control_noaero_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/atmwav_control_noaero_p8_intel +Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4981,15 +4929,15 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 102.657160 -The maximum resident set size (KB) = 1533480 +The total amount of wall time = 102.051523 +The maximum resident set size (KB) = 1533648 -Test 161 atmwav_control_noaero_p8_intel PASS +Test 162 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/control_atmwav_intel -Checking test 162 control_atmwav_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/control_atmwav_intel +Checking test 163 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5032,15 +4980,15 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.414113 -The maximum resident set size (KB) = 547768 +The total amount of wall time = 89.770891 +The maximum resident set size (KB) = 545028 -Test 162 control_atmwav_intel PASS +Test 163 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_intel -Checking test 163 atmaero_control_p8_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/atmaero_control_p8_intel +Checking test 164 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5083,15 +5031,15 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.674149 -The maximum resident set size (KB) = 2830684 +The total amount of wall time = 243.946647 +The maximum resident set size (KB) = 2831448 -Test 163 atmaero_control_p8_intel PASS +Test 164 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_rad_intel -Checking test 164 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/atmaero_control_p8_rad_intel +Checking test 165 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5134,15 +5082,15 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 282.602331 -The maximum resident set size (KB) = 2893960 +The total amount of wall time = 282.940592 +The maximum resident set size (KB) = 2892084 -Test 164 atmaero_control_p8_rad_intel PASS +Test 165 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/atmaero_control_p8_rad_micro_intel -Checking test 165 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/atmaero_control_p8_rad_micro_intel +Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5185,15 +5133,15 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.862945 -The maximum resident set size (KB) = 2897676 +The total amount of wall time = 288.521772 +The maximum resident set size (KB) = 2901056 -Test 165 atmaero_control_p8_rad_micro_intel PASS +Test 166 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_atmaq_intel -Checking test 166 regional_atmaq_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_atmaq_intel +Checking test 167 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5208,15 +5156,15 @@ Checking test 166 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 661.257196 -The maximum resident set size (KB) = 5323600 +The total amount of wall time = 675.186711 +The maximum resident set size (KB) = 5325668 -Test 166 regional_atmaq_intel PASS +Test 167 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_87988/regional_atmaq_debug_intel -Checking test 167 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_202651/regional_atmaq_debug_intel +Checking test 168 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5229,12 +5177,12 @@ Checking test 167 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1291.562449 -The maximum resident set size (KB) = 4830832 +The total amount of wall time = 1293.621173 +The maximum resident set size (KB) = 4833616 -Test 167 regional_atmaq_debug_intel PASS +Test 168 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 28 14:40:28 UTC 2023 -Elapsed time: 01h:35m:13s. Have a nice day! +Mon Oct 2 20:45:01 UTC 2023 +Elapsed time: 01h:35m:59s. Have a nice day! diff --git a/tests/logs/RegressionTests_cheyenne.log b/tests/logs/RegressionTests_cheyenne.log index 18264e1f7d..a82b432267 100644 --- a/tests/logs/RegressionTests_cheyenne.log +++ b/tests/logs/RegressionTests_cheyenne.log @@ -1,72 +1,72 @@ -Tue Sep 12 17:58:43 MDT 2023 +Fri Sep 29 13:13:54 MDT 2023 Start Regression test -Testing UFSWM Hash: c7edaf94b82a877d0f34bfb2b9e358d7415fa8b1 +Testing UFSWM Hash: 597fcdc8a63eb51dadd4b1af112909529b74934a Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 2e638014c72fee7ad4cd441333dfb5d15355560b ../FV3 (remotes/origin/mynnsfc_openacc) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atmaero_intel elapsed time 968 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 1001 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 931 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 415 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1144 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 421 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 416 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 659 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 962 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (heads/bugfix/qr-c3-stringlen) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 977 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 1024 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 930 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 510 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 424 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1160 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 424 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 423 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 668 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_gnu elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 991 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 1041 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 1064 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 911 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 441 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 303 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 450 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 114 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 1176 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 340 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1148 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1190 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1057 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1090 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1131 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1123 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atml_intel elapsed time 997 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 1087 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 1086 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 233 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 462 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 308 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 463 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 126 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 1183 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 346 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1151 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1180 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1082 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 401 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 938 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 944 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1058 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1179 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1171 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_32bit_intel elapsed time 1525 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 337 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 479 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 602 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1414 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 421 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1409 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 292 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 426 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1512 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_mixedmode_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_p8_mixedmode_intel +Compile s2swa_debug_gnu elapsed time 325 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 668 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1558 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 468 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1454 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 294 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 477 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 568 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1478 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 336 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,51 +94,51 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 317.722395 -0:The maximum resident set size (KB) = 2743448 +0:The total amount of wall time = 322.561422 +0:The maximum resident set size (KB) = 2744036 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_gfsv17_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_gfsv17_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,51 +165,51 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 265.042007 -0:The maximum resident set size (KB) = 1435216 +0:The total amount of wall time = 274.999158 +0:The maximum resident set size (KB) = 1435432 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -237,51 +237,51 @@ Checking test 003 cpld_control_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.923077 -0:The maximum resident set size (KB) = 2761772 +0:The total amount of wall time = 320.823416 +0:The maximum resident set size (KB) = 2763628 Test 003 cpld_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_restart_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -297,51 +297,51 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 183.585275 -0:The maximum resident set size (KB) = 2822592 +0:The total amount of wall time = 181.018722 +0:The maximum resident set size (KB) = 2822640 Test 004 cpld_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_qr_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -369,7 +369,7 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -400,20 +400,20 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 316.765556 -0:The maximum resident set size (KB) = 2767016 +0:The total amount of wall time = 338.522138 +0:The maximum resident set size (KB) = 2774376 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_restart_qr_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -429,7 +429,7 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -460,20 +460,20 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 185.884249 -0:The maximum resident set size (KB) = 2669188 +0:The total amount of wall time = 190.317513 +0:The maximum resident set size (KB) = 2676332 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_2threads_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -489,51 +489,51 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 232.438237 -0:The maximum resident set size (KB) = 3213976 +0:The total amount of wall time = 236.095487 +0:The maximum resident set size (KB) = 3216660 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_decomp_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -549,51 +549,51 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 311.418947 -0:The maximum resident set size (KB) = 2767960 +0:The total amount of wall time = 328.598725 +0:The maximum resident set size (KB) = 2772192 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_mpi_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -609,51 +609,51 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.357933 -0:The maximum resident set size (KB) = 2733340 +0:The total amount of wall time = 278.006300 +0:The maximum resident set size (KB) = 2734520 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_ciceC_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_ciceC_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -681,51 +681,51 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 310.249506 -0:The maximum resident set size (KB) = 2760640 +0:The total amount of wall time = 323.220601 +0:The maximum resident set size (KB) = 2759864 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_c192_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -741,51 +741,51 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 591.743762 -0:The maximum resident set size (KB) = 3512492 +0:The total amount of wall time = 586.684376 +0:The maximum resident set size (KB) = 3509664 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c192_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_restart_c192_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -801,51 +801,51 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.120000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 372.023068 -0:The maximum resident set size (KB) = 3738160 +0:The total amount of wall time = 372.305886 +0:The maximum resident set size (KB) = 3744476 -Test 012 cpld_restart_c192_p8_intel PASS Tries: 2 +Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_noaero_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -872,51 +872,51 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 292.983480 -0:The maximum resident set size (KB) = 1444720 +0:The total amount of wall time = 289.539536 +0:The maximum resident set size (KB) = 1444744 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -943,49 +943,49 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 184.537724 -0:The maximum resident set size (KB) = 1464484 +0:The total amount of wall time = 189.762378 +0:The maximum resident set size (KB) = 1464748 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_debug_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_debug_p8_intel Checking test 015 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1001,51 +1001,51 @@ Checking test 015 cpld_debug_p8_intel results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 336.581146 -0:The maximum resident set size (KB) = 2798348 +0:The total amount of wall time = 338.963555 +0:The maximum resident set size (KB) = 2795456 Test 015 cpld_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_debug_noaero_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_debug_noaero_p8_intel Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1060,51 +1060,51 @@ Checking test 016 cpld_debug_noaero_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 289.437443 -0:The maximum resident set size (KB) = 1464460 +0:The total amount of wall time = 286.706483 +0:The maximum resident set size (KB) = 1464360 Test 016 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_noaero_p8_agrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_noaero_p8_agrid_intel Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1131,49 +1131,49 @@ Checking test 017 cpld_control_noaero_p8_agrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 193.474690 -0:The maximum resident set size (KB) = 1467012 +0:The total amount of wall time = 193.420296 +0:The maximum resident set size (KB) = 1467756 Test 017 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_c48_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_c48_intel Checking test 018 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1188,49 +1188,49 @@ Checking test 018 cpld_control_c48_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 604.375181 -0:The maximum resident set size (KB) = 2599476 +0:The total amount of wall time = 605.545207 +0:The maximum resident set size (KB) = 2598996 Test 018 cpld_control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_pdlib_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_pdlib_p8_intel Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1257,51 +1257,51 @@ Checking test 019 cpld_control_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1171.758383 -0:The maximum resident set size (KB) = 1510548 +0:The total amount of wall time = 1172.012473 +0:The maximum resident set size (KB) = 1509572 Test 019 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_restart_pdlib_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_restart_pdlib_p8_intel Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1316,51 +1316,51 @@ Checking test 020 cpld_restart_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 548.516187 -0:The maximum resident set size (KB) = 788544 +0:The total amount of wall time = 554.149585 +0:The maximum resident set size (KB) = 788576 Test 020 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_mpi_pdlib_p8_intel Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1387,51 +1387,51 @@ Checking test 021 cpld_mpi_pdlib_p8_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1067.816913 -0:The maximum resident set size (KB) = 1486960 +0:The total amount of wall time = 1067.209318 +0:The maximum resident set size (KB) = 1486616 Test 021 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_debug_pdlib_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_debug_pdlib_p8_intel Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1446,51 +1446,51 @@ Checking test 022 cpld_debug_pdlib_p8_intel results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 1478.900436 -0:The maximum resident set size (KB) = 1526592 +0:The total amount of wall time = 1484.742743 +0:The maximum resident set size (KB) = 1527364 Test 022 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_flake_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_flake_intel Checking test 023 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1501,14 +1501,14 @@ Checking test 023 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 219.607719 -0:The maximum resident set size (KB) = 510460 +0:The total amount of wall time = 210.604768 +0:The maximum resident set size (KB) = 511184 Test 023 control_flake_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_CubedSphereGrid_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_CubedSphereGrid_intel Checking test 024 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1535,36 +1535,36 @@ Checking test 024 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 140.179937 -0:The maximum resident set size (KB) = 460608 +0:The total amount of wall time = 142.312032 +0:The maximum resident set size (KB) = 460584 Test 024 control_CubedSphereGrid_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_CubedSphereGrid_parallel_intel Checking test 025 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.314734 -0:The maximum resident set size (KB) = 462576 +0:The total amount of wall time = 147.728903 +0:The maximum resident set size (KB) = 462792 Test 025 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_latlon_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_latlon_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_latlon_intel Checking test 026 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1575,14 +1575,14 @@ Checking test 026 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.753960 -0:The maximum resident set size (KB) = 460772 +0:The total amount of wall time = 145.509775 +0:The maximum resident set size (KB) = 460716 Test 026 control_latlon_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_wrtGauss_netcdf_parallel_intel Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1593,60 +1593,60 @@ Checking test 027 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.172582 -0:The maximum resident set size (KB) = 460748 +0:The total amount of wall time = 144.986197 +0:The maximum resident set size (KB) = 460660 Test 027 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_c48_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_c48_intel Checking test 028 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 442.537495 -0:The maximum resident set size (KB) = 634892 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 444.114155 +0:The maximum resident set size (KB) = 635036 Test 028 control_c48_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c192_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_c192_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_c192_intel Checking test 029 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1657,14 @@ Checking test 029 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 573.855484 -0:The maximum resident set size (KB) = 566468 +0:The total amount of wall time = 595.514155 +0:The maximum resident set size (KB) = 566768 Test 029 control_c192_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_c384_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_c384_intel Checking test 030 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 030 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.303620 -0:The maximum resident set size (KB) = 1030268 +0:The total amount of wall time = 588.445615 +0:The maximum resident set size (KB) = 1028432 Test 030 control_c384_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c384gdas_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_c384gdas_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_c384gdas_intel Checking test 031 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1693,46 +1693,46 @@ Checking test 031 control_c384gdas_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 524.096834 -0:The maximum resident set size (KB) = 1158320 + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 533.537883 +0:The maximum resident set size (KB) = 1158004 Test 031 control_c384gdas_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_stochy_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_stochy_intel Checking test 032 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1743,28 +1743,28 @@ Checking test 032 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.316211 -0:The maximum resident set size (KB) = 465672 +0:The total amount of wall time = 98.034830 +0:The maximum resident set size (KB) = 464904 Test 032 control_stochy_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_stochy_restart_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_stochy_restart_intel Checking test 033 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.345434 -0:The maximum resident set size (KB) = 285728 +0:The total amount of wall time = 54.183443 +0:The maximum resident set size (KB) = 285264 Test 033 control_stochy_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_lndp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_lndp_intel Checking test 034 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1775,14 +1775,14 @@ Checking test 034 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.538819 -0:The maximum resident set size (KB) = 465120 +0:The total amount of wall time = 90.019253 +0:The maximum resident set size (KB) = 466632 Test 034 control_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr4_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_iovr4_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_iovr4_intel Checking test 035 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1797,14 +1797,14 @@ Checking test 035 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.131637 -0:The maximum resident set size (KB) = 460708 +0:The total amount of wall time = 148.479479 +0:The maximum resident set size (KB) = 460676 Test 035 control_iovr4_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_iovr5_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_iovr5_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_iovr5_intel Checking test 036 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1819,14 +1819,14 @@ Checking test 036 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.732328 -0:The maximum resident set size (KB) = 460696 +0:The total amount of wall time = 147.791752 +0:The maximum resident set size (KB) = 460708 Test 036 control_iovr5_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_intel Checking test 037 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1841,92 +1841,92 @@ Checking test 037 control_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 179.486801 -0:The maximum resident set size (KB) = 1430116 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 180.945741 +0:The maximum resident set size (KB) = 1430276 Test 037 control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_restart_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_restart_p8_intel Checking test 038 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 95.384248 -0:The maximum resident set size (KB) = 636584 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 95.647343 +0:The maximum resident set size (KB) = 636684 Test 038 control_restart_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_qr_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_qr_p8_intel Checking test 039 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,7 +1941,7 @@ Checking test 039 control_qr_p8_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -1973,21 +1973,21 @@ Checking test 039 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 176.720157 -0:The maximum resident set size (KB) = 1434040 +0:The total amount of wall time = 186.069463 +0:The maximum resident set size (KB) = 1435984 Test 039 control_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_restart_qr_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_restart_qr_p8_intel Checking test 040 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2019,14 +2019,14 @@ Checking test 040 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 98.669266 -0:The maximum resident set size (KB) = 604444 +0:The total amount of wall time = 96.328670 +0:The maximum resident set size (KB) = 604656 Test 040 control_restart_qr_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_decomp_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_decomp_p8_intel Checking test 041 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2037,46 +2037,46 @@ Checking test 041 control_decomp_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 187.058506 -0:The maximum resident set size (KB) = 1423360 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 185.762064 +0:The maximum resident set size (KB) = 1423552 Test 041 control_decomp_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_2threads_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_2threads_p8_intel Checking test 042 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2087,46 +2087,46 @@ Checking test 042 control_2threads_p8_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 171.736160 -0:The maximum resident set size (KB) = 1517280 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 169.831787 +0:The maximum resident set size (KB) = 1515248 Test 042 control_2threads_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_lndp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_lndp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_lndp_intel Checking test 043 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2145,14 +2145,14 @@ Checking test 043 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 333.230247 -0:The maximum resident set size (KB) = 1430120 +0:The total amount of wall time = 335.077973 +0:The maximum resident set size (KB) = 1430312 Test 043 control_p8_lndp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_rrtmgp_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_rrtmgp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_rrtmgp_intel Checking test 044 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2167,46 +2167,46 @@ Checking test 044 control_p8_rrtmgp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 247.375963 -0:The maximum resident set size (KB) = 1483148 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 249.826583 +0:The maximum resident set size (KB) = 1483380 Test 044 control_p8_rrtmgp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_mynn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_mynn_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_mynn_intel Checking test 045 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2221,46 +2221,46 @@ Checking test 045 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 183.955692 -0:The maximum resident set size (KB) = 1434328 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 180.908688 +0:The maximum resident set size (KB) = 1434528 Test 045 control_p8_mynn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/merra2_thompson_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/merra2_thompson_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/merra2_thompson_intel Checking test 046 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2275,46 +2275,46 @@ Checking test 046 merra2_thompson_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 205.851274 -0:The maximum resident set size (KB) = 1436976 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 208.534372 +0:The maximum resident set size (KB) = 1437164 Test 046 merra2_thompson_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_control_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_control_intel Checking test 047 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2325,28 +2325,28 @@ Checking test 047 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 326.583973 -0:The maximum resident set size (KB) = 814404 +0:The total amount of wall time = 334.487544 +0:The maximum resident set size (KB) = 814276 Test 047 regional_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_restart_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_restart_intel Checking test 048 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 167.915917 -0:The maximum resident set size (KB) = 809136 +0:The total amount of wall time = 165.397174 +0:The maximum resident set size (KB) = 809032 Test 048 regional_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_control_qr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_control_qr_intel Checking test 049 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2357,28 +2357,28 @@ Checking test 049 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 335.291789 -0:The maximum resident set size (KB) = 814444 +0:The total amount of wall time = 347.951927 +0:The maximum resident set size (KB) = 814204 Test 049 regional_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_restart_qr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_restart_qr_intel Checking test 050 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 171.362105 -0:The maximum resident set size (KB) = 809096 +0:The total amount of wall time = 171.439181 +0:The maximum resident set size (KB) = 809152 Test 050 regional_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_decomp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_decomp_intel Checking test 051 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2389,14 +2389,14 @@ Checking test 051 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 351.362711 -0:The maximum resident set size (KB) = 822132 +0:The total amount of wall time = 348.984856 +0:The maximum resident set size (KB) = 811660 Test 051 regional_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_2threads_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_2threads_intel Checking test 052 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2407,43 +2407,43 @@ Checking test 052 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 195.901752 -0:The maximum resident set size (KB) = 834996 +0:The total amount of wall time = 196.440212 +0:The maximum resident set size (KB) = 834692 Test 052 regional_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_noquilt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_noquilt_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_noquilt_intel Checking test 053 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 333.536056 -0:The maximum resident set size (KB) = 1084896 +0:The total amount of wall time = 322.388777 +0:The maximum resident set size (KB) = 1083500 Test 053 regional_noquilt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_netcdf_parallel_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_netcdf_parallel_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_netcdf_parallel_intel Checking test 054 regional_netcdf_parallel_intel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 318.022464 -0:The maximum resident set size (KB) = 810308 +0:The total amount of wall time = 332.823124 +0:The maximum resident set size (KB) = 820836 Test 054 regional_netcdf_parallel_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_2dwrtdecomp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 326.907908 -0:The maximum resident set size (KB) = 814432 +0:The total amount of wall time = 324.909872 +0:The maximum resident set size (KB) = 814532 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/fv3_regional_wofs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_wofs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 408.073180 -0:The maximum resident set size (KB) = 559240 +0:The total amount of wall time = 422.979227 +0:The maximum resident set size (KB) = 559312 Test 056 regional_wofs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_intel Checking test 057 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2494,46 +2494,46 @@ Checking test 057 rap_control_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 470.509343 -0:The maximum resident set size (KB) = 837588 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 462.295583 +0:The maximum resident set size (KB) = 837592 Test 057 rap_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_spp_sppt_shum_skeb_intel Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2544,14 +2544,14 @@ Checking test 058 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 256.697504 -0:The maximum resident set size (KB) = 951244 +0:The total amount of wall time = 256.462227 +0:The maximum resident set size (KB) = 953096 Test 058 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_decomp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_decomp_intel Checking test 059 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2566,46 +2566,46 @@ Checking test 059 rap_decomp_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 489.171761 -0:The maximum resident set size (KB) = 834724 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 488.080865 +0:The maximum resident set size (KB) = 834876 Test 059 rap_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_2threads_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_2threads_intel Checking test 060 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2620,92 +2620,92 @@ Checking test 060 rap_2threads_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 445.130568 -0:The maximum resident set size (KB) = 910888 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 440.815628 +0:The maximum resident set size (KB) = 911024 Test 060 rap_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_restart_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 236.560044 -0:The maximum resident set size (KB) = 737536 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 235.988115 +0:The maximum resident set size (KB) = 737252 Test 061 rap_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2720,46 +2720,46 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 466.610981 -0:The maximum resident set size (KB) = 837576 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 461.944631 +0:The maximum resident set size (KB) = 837584 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_decomp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2774,92 +2774,92 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 487.621897 -0:The maximum resident set size (KB) = 836928 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 490.465130 +0:The maximum resident set size (KB) = 836940 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_restart_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 345.218589 -0:The maximum resident set size (KB) = 746000 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 344.233401 +0:The maximum resident set size (KB) = 746852 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2874,46 +2874,46 @@ Checking test 065 hrrr_control_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 447.293107 -0:The maximum resident set size (KB) = 835016 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 235.102871 +0:The maximum resident set size (KB) = 834200 Test 065 hrrr_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_qr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_qr_intel Checking test 066 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2928,7 +2928,7 @@ Checking test 066 hrrr_control_qr_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -2960,14 +2960,14 @@ Checking test 066 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 448.731324 -0:The maximum resident set size (KB) = 842788 +0:The total amount of wall time = 236.649958 +0:The maximum resident set size (KB) = 844188 Test 066 hrrr_control_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_decomp_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2982,46 +2982,46 @@ Checking test 067 hrrr_control_decomp_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 464.060928 -0:The maximum resident set size (KB) = 834068 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 242.019143 +0:The maximum resident set size (KB) = 834712 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_2threads_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3036,74 +3036,74 @@ Checking test 068 hrrr_control_2threads_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 507.816961 -0:The maximum resident set size (KB) = 905196 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 307.712147 +0:The maximum resident set size (KB) = 906776 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_intel Checking test 069 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 329.913251 -0:The maximum resident set size (KB) = 694512 +0:The total amount of wall time = 122.970328 +0:The maximum resident set size (KB) = 689504 Test 069 hrrr_control_restart_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_qr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_qr_intel Checking test 070 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 334.676590 -0:The maximum resident set size (KB) = 609204 +0:The total amount of wall time = 124.869759 +0:The maximum resident set size (KB) = 601920 Test 070 hrrr_control_restart_qr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1beta_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1beta_intel Checking test 071 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3118,46 +3118,46 @@ Checking test 071 rrfs_v1beta_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 455.553127 -0:The maximum resident set size (KB) = 834324 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 456.221295 +0:The maximum resident set size (KB) = 834480 Test 071 rrfs_v1beta_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1nssl_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1nssl_intel Checking test 072 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3172,14 @@ Checking test 072 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 572.280144 -0:The maximum resident set size (KB) = 516856 +0:The total amount of wall time = 571.028569 +0:The maximum resident set size (KB) = 517860 Test 072 rrfs_v1nssl_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1nssl_nohailnoccn_intel Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3194,123 +3194,15 @@ Checking test 073 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 550.747246 -0:The maximum resident set size (KB) = 511348 +0:The total amount of wall time = 549.722957 +0:The maximum resident set size (KB) = 511472 Test 073 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_gf_intel -Checking test 074 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 463.088102 -0:The maximum resident set size (KB) = 837160 - -Test 074 hrrr_gf_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_c3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_c3_intel -Checking test 075 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 466.990006 -0:The maximum resident set size (KB) = 837176 - -Test 075 hrrr_c3_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmg_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_csawmg_intel -Checking test 076 control_csawmg_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_csawmg_intel +Checking test 074 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3320,15 +3212,15 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 389.154879 -0:The maximum resident set size (KB) = 531400 +0:The total amount of wall time = 388.821723 +0:The maximum resident set size (KB) = 531508 -Test 076 control_csawmg_intel PASS +Test 074 control_csawmg_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_csawmgt_intel +Checking test 075 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3338,15 +3230,15 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 384.963467 -0:The maximum resident set size (KB) = 531720 +0:The total amount of wall time = 383.268262 +0:The maximum resident set size (KB) = 531816 -Test 077 control_csawmgt_intel PASS +Test 075 control_csawmgt_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_ras_intel -Checking test 078 control_ras_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_ras_intel +Checking test 076 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3356,27 +3248,27 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.321100 -0:The maximum resident set size (KB) = 497316 +0:The total amount of wall time = 204.412306 +0:The maximum resident set size (KB) = 497400 -Test 078 control_ras_intel PASS +Test 076 control_ras_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_wam_intel -Checking test 079 control_wam_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_wam_intel +Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.051545 -0:The maximum resident set size (KB) = 267752 +0:The total amount of wall time = 124.044129 +0:The maximum resident set size (KB) = 267808 -Test 079 control_wam_intel PASS +Test 077 control_wam_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_faster_intel -Checking test 080 control_p8_faster_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_faster_intel +Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3390,47 +3282,47 @@ Checking test 080 control_p8_faster_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 166.268940 -0:The maximum resident set size (KB) = 1429880 - -Test 080 control_p8_faster_intel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_control_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_control_faster_intel -Checking test 081 regional_control_faster_intel results .... + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 169.819757 +0:The maximum resident set size (KB) = 1429988 + +Test 078 control_p8_faster_intel PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_control_faster_intel +Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3440,15 +3332,15 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 301.754576 -0:The maximum resident set size (KB) = 814252 +0:The total amount of wall time = 315.294599 +0:The maximum resident set size (KB) = 814596 -Test 081 regional_control_faster_intel PASS +Test 079 regional_control_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_CubedSphereGrid_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_CubedSphereGrid_debug_intel -Checking test 082 control_CubedSphereGrid_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_CubedSphereGrid_debug_intel +Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3474,348 +3366,376 @@ Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 160.510763 -0:The maximum resident set size (KB) = 624732 +0:The total amount of wall time = 154.861725 +0:The maximum resident set size (KB) = 624380 -Test 082 control_CubedSphereGrid_debug_intel PASS +Test 080 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.175977 -0:The maximum resident set size (KB) = 622908 +0:The total amount of wall time = 154.851946 +0:The maximum resident set size (KB) = 622524 -Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_stochy_debug_intel -Checking test 084 control_stochy_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_stochy_debug_intel +Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.852337 -0:The maximum resident set size (KB) = 628780 +0:The total amount of wall time = 174.747410 +0:The maximum resident set size (KB) = 628844 -Test 084 control_stochy_debug_intel PASS +Test 082 control_stochy_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_lndp_debug_intel -Checking test 085 control_lndp_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_lndp_debug_intel +Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.667662 -0:The maximum resident set size (KB) = 629672 +0:The total amount of wall time = 156.544928 +0:The maximum resident set size (KB) = 627568 -Test 085 control_lndp_debug_intel PASS +Test 083 control_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmg_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_csawmg_debug_intel -Checking test 086 control_csawmg_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_csawmg_debug_intel +Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.130319 -0:The maximum resident set size (KB) = 669712 +0:The total amount of wall time = 248.366257 +0:The maximum resident set size (KB) = 667024 -Test 086 control_csawmg_debug_intel PASS +Test 084 control_csawmg_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_csawmgt_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_csawmgt_debug_intel -Checking test 087 control_csawmgt_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_csawmgt_debug_intel +Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 243.170008 -0:The maximum resident set size (KB) = 669112 +0:The total amount of wall time = 244.625043 +0:The maximum resident set size (KB) = 666880 -Test 087 control_csawmgt_debug_intel PASS +Test 085 control_csawmgt_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_ras_debug_intel -Checking test 088 control_ras_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_ras_debug_intel +Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.931776 -0:The maximum resident set size (KB) = 637948 +0:The total amount of wall time = 158.626032 +0:The maximum resident set size (KB) = 637768 -Test 088 control_ras_debug_intel PASS +Test 086 control_ras_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_diag_debug_intel -Checking test 089 control_diag_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_diag_debug_intel +Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.315562 -0:The maximum resident set size (KB) = 679612 +0:The total amount of wall time = 159.446661 +0:The maximum resident set size (KB) = 682700 -Test 089 control_diag_debug_intel PASS +Test 087 control_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_debug_p8_intel -Checking test 090 control_debug_p8_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_debug_p8_intel +Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.727295 -0:The maximum resident set size (KB) = 1447688 +0:The total amount of wall time = 175.932378 +0:The maximum resident set size (KB) = 1447748 -Test 090 control_debug_p8_intel PASS +Test 088 control_debug_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_debug_intel -Checking test 091 regional_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_debug_intel +Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1031.380981 -0:The maximum resident set size (KB) = 838356 +0:The total amount of wall time = 1031.817650 +0:The maximum resident set size (KB) = 838852 + +Test 089 regional_debug_intel PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_debug_intel +Checking test 090 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 285.872348 +0:The maximum resident set size (KB) = 1000664 -Test 091 regional_debug_intel PASS +Test 090 rap_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_debug_intel -Checking test 092 rap_control_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_debug_intel +Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.361065 -0:The maximum resident set size (KB) = 1001016 +0:The total amount of wall time = 279.494093 +0:The maximum resident set size (KB) = 997504 -Test 092 rap_control_debug_intel PASS +Test 091 hrrr_control_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_debug_intel -Checking test 093 hrrr_control_debug_intel results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_gf_debug_intel +Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 278.785457 -0:The maximum resident set size (KB) = 998828 +0:The total amount of wall time = 284.561797 +0:The maximum resident set size (KB) = 1000352 -Test 093 hrrr_control_debug_intel PASS +Test 092 hrrr_gf_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_unified_drag_suite_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_c3_debug_intel +Checking test 093 hrrr_c3_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 285.597706 +0:The maximum resident set size (KB) = 1000380 + +Test 093 hrrr_c3_debug_intel PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.640196 -0:The maximum resident set size (KB) = 1001048 +0:The total amount of wall time = 286.197613 +0:The maximum resident set size (KB) = 1000748 Test 094 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_diag_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.856032 -0:The maximum resident set size (KB) = 1083372 +0:The total amount of wall time = 297.670995 +0:The maximum resident set size (KB) = 1082764 Test 095 rap_diag_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_cires_ugwp_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.905641 -0:The maximum resident set size (KB) = 1001912 +0:The total amount of wall time = 291.833146 +0:The maximum resident set size (KB) = 1000640 Test 096 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_unified_ugwp_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.957812 -0:The maximum resident set size (KB) = 1001176 +0:The total amount of wall time = 291.463741 +0:The maximum resident set size (KB) = 1000896 Test 097 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_lndp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_lndp_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.232968 -0:The maximum resident set size (KB) = 1001760 +0:The total amount of wall time = 288.747468 +0:The maximum resident set size (KB) = 1001524 Test 098 rap_lndp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_progcld_thompson_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.520708 -0:The maximum resident set size (KB) = 1001040 +0:The total amount of wall time = 286.037377 +0:The maximum resident set size (KB) = 1000696 Test 099 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_noah_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.073179 -0:The maximum resident set size (KB) = 1002380 +0:The total amount of wall time = 280.811612 +0:The maximum resident set size (KB) = 1000716 Test 100 rap_noah_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.868903 -0:The maximum resident set size (KB) = 1000908 +0:The total amount of wall time = 286.478501 +0:The maximum resident set size (KB) = 1000432 Test 101 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 470.411217 -0:The maximum resident set size (KB) = 1000640 +0:The total amount of wall time = 470.361674 +0:The maximum resident set size (KB) = 1000264 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1beta_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.019211 -0:The maximum resident set size (KB) = 997964 +0:The total amount of wall time = 281.796358 +0:The maximum resident set size (KB) = 998068 Test 103 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_clm_lake_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 352.422843 -0:The maximum resident set size (KB) = 1003488 +0:The total amount of wall time = 348.624011 +0:The maximum resident set size (KB) = 1002364 Test 104 rap_clm_lake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_flake_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.129510 -0:The maximum resident set size (KB) = 1001204 +0:The total amount of wall time = 287.502563 +0:The maximum resident set size (KB) = 1000884 Test 105 rap_flake_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_wam_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_wam_debug_intel Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.826517 -0:The maximum resident set size (KB) = 298552 +0:The total amount of wall time = 289.654710 +0:The maximum resident set size (KB) = 298056 Test 106 control_wam_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3826,14 +3746,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 241.950326 -0:The maximum resident set size (KB) = 850020 +0:The total amount of wall time = 240.831282 +0:The maximum resident set size (KB) = 849524 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn32_phy32_intel Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3848,46 +3768,46 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 393.111066 -0:The maximum resident set size (KB) = 721696 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 383.280504 +0:The maximum resident set size (KB) = 721944 Test 108 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_dyn32_phy32_intel Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3902,46 +3822,46 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 198.295754 -0:The maximum resident set size (KB) = 721280 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 200.388693 +0:The maximum resident set size (KB) = 721764 Test 109 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_qr_dyn32_phy32_intel Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3956,7 +3876,7 @@ Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -3988,14 +3908,14 @@ Checking test 110 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 201.063853 -0:The maximum resident set size (KB) = 725108 +0:The total amount of wall time = 200.025760 +0:The maximum resident set size (KB) = 728160 Test 110 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4010,46 +3930,46 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 373.598794 -0:The maximum resident set size (KB) = 771800 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 368.383577 +0:The maximum resident set size (KB) = 773544 Test 111 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,46 +3984,46 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 279.057330 -0:The maximum resident set size (KB) = 763076 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 277.101113 +0:The maximum resident set size (KB) = 766076 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,120 +4038,120 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 211.308758 -0:The maximum resident set size (KB) = 720076 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 208.978421 +0:The maximum resident set size (KB) = 721080 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 286.098410 -0:The maximum resident set size (KB) = 639220 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 289.168556 +0:The maximum resident set size (KB) = 639600 Test 114 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 105.562789 -0:The maximum resident set size (KB) = 600512 +0:The total amount of wall time = 107.041925 +0:The maximum resident set size (KB) = 601448 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 116 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 108.275481 -0:The maximum resident set size (KB) = 571068 +0:The total amount of wall time = 107.762738 +0:The maximum resident set size (KB) = 572040 Test 116 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_control_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4240,47 +4160,47 @@ Checking test 117 conus13km_control_intel results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 127.847960 -0:The maximum resident set size (KB) = 955312 +0:The total amount of wall time = 125.891048 +0:The maximum resident set size (KB) = 957692 Test 117 conus13km_control_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_2threads_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 48.341780 -0:The maximum resident set size (KB) = 965124 +0:The total amount of wall time = 50.581758 +0:The maximum resident set size (KB) = 964428 Test 118 conus13km_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_restart_mismatch_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.494459 -0:The maximum resident set size (KB) = 905048 +0:The total amount of wall time = 73.365106 +0:The maximum resident set size (KB) = 903748 Test 119 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn64_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4295,155 +4215,162 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 255.036028 -0:The maximum resident set size (KB) = 741732 + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 264.404781 +0:The maximum resident set size (KB) = 741720 Test 120 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.536419 -0:The maximum resident set size (KB) = 886104 +0:The total amount of wall time = 279.965222 +0:The maximum resident set size (KB) = 885932 Test 121 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 274.544773 -0:The maximum resident set size (KB) = 885736 +0:The total amount of wall time = 274.619309 +0:The maximum resident set size (KB) = 885780 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 866.690177 -0:The maximum resident set size (KB) = 982436 +0:The total amount of wall time = 864.857781 +0:The maximum resident set size (KB) = 979476 Test 123 conus13km_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_debug_2threads_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 492.016360 -0:The maximum resident set size (KB) = 996344 +0:The total amount of wall time = 491.303922 +0:The maximum resident set size (KB) = 994876 Test 124 conus13km_debug_2threads_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_radar_tten_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 864.535992 -0:The maximum resident set size (KB) = 1049284 +0:The total amount of wall time = 866.200113 +0:The maximum resident set size (KB) = 1049068 Test 125 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.561402 -0:The maximum resident set size (KB) = 907572 +0:The total amount of wall time = 285.244109 +0:The maximum resident set size (KB) = 907232 Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 244.121576 -0:The maximum resident set size (KB) = 1088288 +0:The total amount of wall time = 242.460699 +0:The maximum resident set size (KB) = 1094936 Test 127 hafs_regional_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 270.456317 -0:The maximum resident set size (KB) = 1442732 +0:The total amount of wall time = 287.468083 +0:The maximum resident set size (KB) = 1442900 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_atm_ocn_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4452,14 +4379,14 @@ Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 449.731733 -0:The maximum resident set size (KB) = 1030976 +0:The total amount of wall time = 449.873225 +0:The maximum resident set size (KB) = 1029196 Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_atm_wav_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4468,14 +4395,14 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 976.724717 -0:The maximum resident set size (KB) = 1122688 +0:The total amount of wall time = 1008.585541 +0:The maximum resident set size (KB) = 1125776 Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4486,43 +4413,43 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1160.481295 -0:The maximum resident set size (KB) = 1088860 +0:The total amount of wall time = 1160.534384 +0:The maximum resident set size (KB) = 1080088 Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_1nest_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -0:The total amount of wall time = 350.059901 -0:The maximum resident set size (KB) = 444120 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +0:The total amount of wall time = 349.351358 +0:The maximum resident set size (KB) = 443508 Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4531,68 +4458,68 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 398.805649 -0:The maximum resident set size (KB) = 464096 +0:The total amount of wall time = 398.365819 +0:The maximum resident set size (KB) = 464876 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_global_1nest_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -0:The total amount of wall time = 160.762894 -0:The maximum resident set size (KB) = 257136 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +0:The total amount of wall time = 163.090801 +0:The maximum resident set size (KB) = 256812 Test 134 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_multiple_4nests_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_global_multiple_4nests_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4610,78 +4537,78 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest05.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest03.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest04.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest05.nc ............ALT CHECK......OK - -0:The total amount of wall time = 458.099363 -0:The maximum resident set size (KB) = 321716 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK + +0:The total amount of wall time = 454.048099 +0:The maximum resident set size (KB) = 321420 Test 135 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,43 +4617,43 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 228.428962 -0:The maximum resident set size (KB) = 462292 +0:The total amount of wall time = 228.135741 +0:The maximum resident set size (KB) = 462568 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......OK - -0:The total amount of wall time = 212.882962 -0:The maximum resident set size (KB) = 462272 + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +0:The total amount of wall time = 213.491125 +0:The maximum resident set size (KB) = 462424 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4735,42 +4662,42 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.387862 -0:The maximum resident set size (KB) = 522392 +0:The total amount of wall time = 279.619889 +0:The maximum resident set size (KB) = 521912 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_global_storm_following_1nest_atm_intel Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 63.230900 -0:The maximum resident set size (KB) = 276600 +0:The total amount of wall time = 64.360665 +0:The maximum resident set size (KB) = 276576 Test 139 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 763.858222 -0:The maximum resident set size (KB) = 541896 +0:The total amount of wall time = 764.176535 +0:The maximum resident set size (KB) = 541244 Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4781,14 +4708,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 729.884923 -0:The maximum resident set size (KB) = 578616 +0:The total amount of wall time = 717.457012 +0:The maximum resident set size (KB) = 576236 Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_docn_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_docn_intel Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4796,14 +4723,14 @@ Checking test 142 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 373.126323 -0:The maximum resident set size (KB) = 1034072 +0:The total amount of wall time = 371.294515 +0:The maximum resident set size (KB) = 1034600 Test 142 hafs_regional_docn_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_docn_oisst_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_docn_oisst_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_docn_oisst_intel Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4811,131 +4738,131 @@ Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 373.738936 -0:The maximum resident set size (KB) = 1014128 +0:The total amount of wall time = 372.859969 +0:The maximum resident set size (KB) = 1001940 Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hafs_regional_datm_cdeps_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hafs_regional_datm_cdeps_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hafs_regional_datm_cdeps_intel Checking test 144 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1159.090773 -0:The maximum resident set size (KB) = 856800 +0:The total amount of wall time = 1276.277594 +0:The maximum resident set size (KB) = 856652 Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_control_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_control_cfsr_intel Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.121848 -0:The maximum resident set size (KB) = 735636 +0:The total amount of wall time = 165.860056 +0:The maximum resident set size (KB) = 724276 Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_restart_cfsr_intel Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 97.583570 -0:The maximum resident set size (KB) = 723780 +0:The total amount of wall time = 100.982773 +0:The maximum resident set size (KB) = 712280 Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_control_gefs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_control_gefs_intel Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 157.776574 -0:The maximum resident set size (KB) = 614444 +0:The total amount of wall time = 152.623207 +0:The maximum resident set size (KB) = 614196 Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_iau_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_iau_gefs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_iau_gefs_intel Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 156.333308 -0:The maximum resident set size (KB) = 614460 +0:The total amount of wall time = 159.661413 +0:The maximum resident set size (KB) = 614480 Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_stochy_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_stochy_gefs_intel Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.372530 -0:The maximum resident set size (KB) = 614456 +0:The total amount of wall time = 161.270902 +0:The maximum resident set size (KB) = 614940 Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_ciceC_cfsr_intel Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.804493 -0:The maximum resident set size (KB) = 724320 +0:The total amount of wall time = 166.673124 +0:The maximum resident set size (KB) = 724304 Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_bulk_cfsr_intel Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.195844 -0:The maximum resident set size (KB) = 724324 +0:The total amount of wall time = 166.108437 +0:The maximum resident set size (KB) = 723972 Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_bulk_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_bulk_gefs_intel Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 153.405197 -0:The maximum resident set size (KB) = 614452 +0:The total amount of wall time = 157.987586 +0:The maximum resident set size (KB) = 614436 Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_mx025_cfsr_intel Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4944,14 +4871,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 428.890860 -0:The maximum resident set size (KB) = 569744 +0:The total amount of wall time = 422.571150 +0:The maximum resident set size (KB) = 569364 Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_mx025_gefs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_mx025_gefs_intel Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4960,77 +4887,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 405.511751 -0:The maximum resident set size (KB) = 505976 +0:The total amount of wall time = 418.463804 +0:The maximum resident set size (KB) = 505924 Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_multiple_files_cfsr_intel Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.525611 -0:The maximum resident set size (KB) = 724328 +0:The total amount of wall time = 165.656330 +0:The maximum resident set size (KB) = 724308 Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_3072x1536_cfsr_intel Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 278.143795 -0:The maximum resident set size (KB) = 1982108 +0:The total amount of wall time = 267.552263 +0:The maximum resident set size (KB) = 1982040 Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_gfs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_gfs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_gfs_intel Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.007619 -0:The maximum resident set size (KB) = 1982052 +0:The total amount of wall time = 250.565794 +0:The maximum resident set size (KB) = 1982048 Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_debug_cfsr_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_debug_cfsr_intel Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 368.779298 -0:The maximum resident set size (KB) = 708152 +0:The total amount of wall time = 368.519327 +0:The maximum resident set size (KB) = 708052 Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_control_cfsr_faster_intel Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.060757 -0:The maximum resident set size (KB) = 724264 +0:The total amount of wall time = 165.633939 +0:The maximum resident set size (KB) = 724304 Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_lnd_gswp3_intel Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5039,14 +4966,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 10.599583 -0:The maximum resident set size (KB) = 139764 +0:The total amount of wall time = 9.469587 +0:The maximum resident set size (KB) = 137608 Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_lnd_gswp3_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_lnd_gswp3_rst_intel Checking test 161 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5055,14 +4982,14 @@ Checking test 161 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 13.605051 -0:The maximum resident set size (KB) = 134236 +0:The total amount of wall time = 14.052145 +0:The maximum resident set size (KB) = 139808 Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_atmlnd_sbs_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_atmlnd_sbs_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_atmlnd_sbs_intel Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5101,110 +5028,110 @@ Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 225.928868 -0:The maximum resident set size (KB) = 1470364 + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +0:The total amount of wall time = 234.740264 +0:The maximum resident set size (KB) = 1470600 Test 162 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmwav_control_noaero_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/atmwav_control_noaero_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/atmwav_control_noaero_p8_intel Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK Comparing atmf012.nc .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK Comparing 20210322.180000.out_pnt.ww3 .........OK Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.720559 -0:The maximum resident set size (KB) = 1446540 +0:The total amount of wall time = 96.158890 +0:The maximum resident set size (KB) = 1446040 Test 163 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_atmwav_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_atmwav_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_atmwav_intel Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5215,47 +5142,47 @@ Checking test 164 control_atmwav_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.939364 -0:The maximum resident set size (KB) = 478692 +0:The total amount of wall time = 99.278754 +0:The maximum resident set size (KB) = 482836 Test 164 control_atmwav_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/atmaero_control_p8_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/atmaero_control_p8_intel Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5267,46 +5194,46 @@ Checking test 165 atmaero_control_p8_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 250.986407 -0:The maximum resident set size (KB) = 2744704 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 257.403286 +0:The maximum resident set size (KB) = 2750192 Test 165 atmaero_control_p8_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/atmaero_control_p8_rad_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/atmaero_control_p8_rad_intel Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5318,46 +5245,46 @@ Checking test 166 atmaero_control_p8_rad_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 306.935851 -0:The maximum resident set size (KB) = 2790648 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 302.509628 +0:The maximum resident set size (KB) = 2778984 Test 166 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/atmaero_control_p8_rad_micro_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/atmaero_control_p8_rad_micro_intel Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5369,46 +5296,46 @@ Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 307.513374 -0:The maximum resident set size (KB) = 2796980 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 308.470596 +0:The maximum resident set size (KB) = 2790928 Test 167 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_atmaq_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_atmaq_intel Checking test 168 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5417,21 +5344,21 @@ Checking test 168 regional_atmaq_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 654.546153 -0:The maximum resident set size (KB) = 5103888 +0:The total amount of wall time = 668.603823 +0:The maximum resident set size (KB) = 5104732 Test 168 regional_atmaq_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_atmaq_faster_intel -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_atmaq_faster_intel +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_atmaq_faster_intel Checking test 169 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5440,67 +5367,67 @@ Checking test 169 regional_atmaq_faster_intel results .... Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 621.647362 -0:The maximum resident set size (KB) = 5103720 +0:The total amount of wall time = 620.172385 +0:The maximum resident set size (KB) = 5104432 Test 169 regional_atmaq_faster_intel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_c48_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_c48_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_c48_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_c48_gnu Checking test 170 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 821.432179 -0:The maximum resident set size (KB) = 676784 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 815.071591 +0:The maximum resident set size (KB) = 676900 Test 170 control_c48_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_stochy_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_stochy_gnu Checking test 171 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5511,14 +5438,14 @@ Checking test 171 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.822636 -0:The maximum resident set size (KB) = 476496 +0:The total amount of wall time = 173.507648 +0:The maximum resident set size (KB) = 476864 Test 171 control_stochy_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_ras_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_ras_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_ras_gnu Checking test 172 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5529,14 +5456,14 @@ Checking test 172 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.310365 -0:The maximum resident set size (KB) = 483216 +0:The total amount of wall time = 288.966714 +0:The maximum resident set size (KB) = 483252 Test 172 control_ras_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_p8_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_p8_gnu Checking test 173 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5551,46 +5478,46 @@ Checking test 173 control_p8_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 309.484322 -0:The maximum resident set size (KB) = 1236556 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 305.522343 +0:The maximum resident set size (KB) = 1236800 Test 173 control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_flake_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_flake_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_flake_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_flake_gnu Checking test 174 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5601,14 +5528,14 @@ Checking test 174 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 353.312271 -0:The maximum resident set size (KB) = 525412 +0:The total amount of wall time = 354.482971 +0:The maximum resident set size (KB) = 524224 Test 174 control_flake_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_gnu Checking test 175 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5623,46 +5550,46 @@ Checking test 175 rap_control_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 711.661308 -0:The maximum resident set size (KB) = 920384 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 712.957625 +0:The maximum resident set size (KB) = 920872 Test 175 rap_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_decomp_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_decomp_gnu Checking test 176 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5677,46 +5604,46 @@ Checking test 176 rap_decomp_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 710.995667 -0:The maximum resident set size (KB) = 920840 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 715.938077 +0:The maximum resident set size (KB) = 920472 Test 176 rap_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_2threads_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_2threads_gnu Checking test 177 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5731,92 +5658,92 @@ Checking test 177 rap_2threads_gnu results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 646.627928 -0:The maximum resident set size (KB) = 1005068 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 649.995146 +0:The maximum resident set size (KB) = 1004988 Test 177 rap_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_restart_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_restart_gnu Checking test 178 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 359.468848 -0:The maximum resident set size (KB) = 716572 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 358.401316 +0:The maximum resident set size (KB) = 716584 Test 178 rap_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_gnu Checking test 179 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5831,46 +5758,46 @@ Checking test 179 rap_sfcdiff_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 707.120136 -0:The maximum resident set size (KB) = 919208 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 707.769891 +0:The maximum resident set size (KB) = 919548 Test 179 rap_sfcdiff_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_decomp_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_decomp_gnu Checking test 180 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -5885,146 +5812,146 @@ Checking test 180 rap_sfcdiff_decomp_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 719.613744 -0:The maximum resident set size (KB) = 919520 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 720.372419 +0:The maximum resident set size (KB) = 919744 Test 180 rap_sfcdiff_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_sfcdiff_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_sfcdiff_restart_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_sfcdiff_restart_gnu Checking test 181 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 525.701273 -0:The maximum resident set size (KB) = 722296 - -Test 181 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_gnu -Checking test 182 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 527.373791 +0:The maximum resident set size (KB) = 722464 + +Test 181 rap_sfcdiff_restart_gnu PASS + -0:The total amount of wall time = 689.497270 -0:The maximum resident set size (KB) = 867268 +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_gnu +Checking test 182 hrrr_control_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 355.783622 +0:The maximum resident set size (KB) = 864524 Test 182 hrrr_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_qr_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_qr_gnu Checking test 183 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6039,7 +5966,7 @@ Checking test 183 hrrr_control_qr_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -6071,14 +5998,14 @@ Checking test 183 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 687.218225 -0:The maximum resident set size (KB) = 812412 +0:The total amount of wall time = 355.113311 +0:The maximum resident set size (KB) = 811256 Test 183 hrrr_control_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_2threads_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_2threads_gnu Checking test 184 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6093,46 +6020,46 @@ Checking test 184 hrrr_control_2threads_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 710.883579 -0:The maximum resident set size (KB) = 939084 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 411.398596 +0:The maximum resident set size (KB) = 935632 Test 184 hrrr_control_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_decomp_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_decomp_gnu Checking test 185 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6147,74 +6074,74 @@ Checking test 185 hrrr_control_decomp_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 684.501621 -0:The maximum resident set size (KB) = 866852 + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 355.434544 +0:The maximum resident set size (KB) = 864040 Test 185 hrrr_control_decomp_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_gnu Checking test 186 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 511.386422 -0:The maximum resident set size (KB) = 673260 +0:The total amount of wall time = 184.583440 +0:The maximum resident set size (KB) = 666532 Test 186 hrrr_control_restart_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_qr_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_qr_gnu Checking test 187 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 510.469471 -0:The maximum resident set size (KB) = 578328 +0:The total amount of wall time = 184.601793 +0:The maximum resident set size (KB) = 575340 Test 187 hrrr_control_restart_qr_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1beta_gnu +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1beta_gnu Checking test 188 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6229,403 +6156,377 @@ Checking test 188 rrfs_v1beta_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 698.709743 -0:The maximum resident set size (KB) = 881776 + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 694.345120 +0:The maximum resident set size (KB) = 881504 Test 188 rrfs_v1beta_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_gf_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_gf_gnu -Checking test 189 hrrr_gf_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 707.063734 -0:The maximum resident set size (KB) = 908496 - -Test 189 hrrr_gf_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_diag_debug_gnu -Checking test 190 control_diag_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_diag_debug_gnu +Checking test 189 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.649434 -0:The maximum resident set size (KB) = 526820 +0:The total amount of wall time = 81.257546 +0:The maximum resident set size (KB) = 526904 -Test 190 control_diag_debug_gnu PASS +Test 189 control_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/regional_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/regional_debug_gnu -Checking test 191 regional_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/regional_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/regional_debug_gnu +Checking test 190 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 471.054012 -0:The maximum resident set size (KB) = 798952 +0:The total amount of wall time = 473.726736 +0:The maximum resident set size (KB) = 798908 -Test 191 regional_debug_gnu PASS +Test 190 regional_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_debug_gnu -Checking test 192 rap_control_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_debug_gnu +Checking test 191 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.245299 -0:The maximum resident set size (KB) = 921504 +0:The total amount of wall time = 143.525922 +0:The maximum resident set size (KB) = 921672 -Test 192 rap_control_debug_gnu PASS +Test 191 rap_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_debug_gnu -Checking test 193 hrrr_control_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_debug_gnu +Checking test 192 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 139.604121 -0:The maximum resident set size (KB) = 877336 +0:The total amount of wall time = 140.050628 +0:The maximum resident set size (KB) = 875888 -Test 193 hrrr_control_debug_gnu PASS +Test 192 hrrr_control_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_diag_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_diag_debug_gnu -Checking test 194 rap_diag_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_gf_debug_gnu +Checking test 193 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.758426 -0:The maximum resident set size (KB) = 1023664 +0:The total amount of wall time = 141.970588 +0:The maximum resident set size (KB) = 918036 -Test 194 rap_diag_debug_gnu PASS +Test 193 hrrr_gf_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 195 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_c3_debug_gnu +Checking test 194 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 231.587371 -0:The maximum resident set size (KB) = 918104 +0:The total amount of wall time = 142.685606 +0:The maximum resident set size (KB) = 918408 -Test 195 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 194 hrrr_c3_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_progcld_thompson_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_progcld_thompson_debug_gnu -Checking test 196 rap_progcld_thompson_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_diag_debug_gnu +Checking test 195 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.201803 -0:The maximum resident set size (KB) = 922396 +0:The total amount of wall time = 151.971957 +0:The maximum resident set size (KB) = 1023732 -Test 196 rap_progcld_thompson_debug_gnu PASS +Test 195 rap_diag_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rrfs_v1beta_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rrfs_v1beta_debug_gnu -Checking test 197 rrfs_v1beta_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 196 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.636423 -0:The maximum resident set size (KB) = 881452 +0:The total amount of wall time = 233.785003 +0:The maximum resident set size (KB) = 917496 -Test 197 rrfs_v1beta_debug_gnu PASS +Test 196 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_ras_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_ras_debug_gnu -Checking test 198 control_ras_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_progcld_thompson_debug_gnu +Checking test 197 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 79.076316 -0:The maximum resident set size (KB) = 455988 +0:The total amount of wall time = 145.153686 +0:The maximum resident set size (KB) = 922576 -Test 198 control_ras_debug_gnu PASS +Test 197 rap_progcld_thompson_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_stochy_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_stochy_debug_gnu -Checking test 199 control_stochy_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rrfs_v1beta_debug_gnu +Checking test 198 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.948744 -0:The maximum resident set size (KB) = 451504 +0:The total amount of wall time = 142.374162 +0:The maximum resident set size (KB) = 881236 -Test 199 control_stochy_debug_gnu PASS +Test 198 rrfs_v1beta_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_debug_p8_gnu -Checking test 200 control_debug_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_ras_debug_gnu +Checking test 199 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.790676 -0:The maximum resident set size (KB) = 1232060 +0:The total amount of wall time = 79.851630 +0:The maximum resident set size (KB) = 455980 -Test 200 control_debug_p8_gnu PASS +Test 199 control_ras_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_flake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_flake_debug_gnu -Checking test 201 rap_flake_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_stochy_debug_gnu +Checking test 200 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.571302 -0:The maximum resident set size (KB) = 923524 +0:The total amount of wall time = 88.294100 +0:The maximum resident set size (KB) = 451536 -Test 201 rap_flake_debug_gnu PASS +Test 200 control_stochy_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_clm_lake_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_clm_lake_debug_gnu -Checking test 202 rap_clm_lake_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_debug_p8_gnu +Checking test 201 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.935113 -0:The maximum resident set size (KB) = 925896 +0:The total amount of wall time = 89.829101 +0:The maximum resident set size (KB) = 1232152 -Test 202 rap_clm_lake_debug_gnu PASS +Test 201 control_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/control_wam_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/control_wam_debug_gnu -Checking test 203 control_wam_debug_gnu results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_flake_debug_gnu +Checking test 202 rap_flake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 139.518883 -0:The maximum resident set size (KB) = 247700 +0:The total amount of wall time = 143.805733 +0:The maximum resident set size (KB) = 923208 -Test 203 control_wam_debug_gnu PASS +Test 202 rap_flake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn32_phy32_gnu -Checking test 204 rap_control_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_clm_lake_debug_gnu +Checking test 203 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 704.352391 -0:The maximum resident set size (KB) = 720332 +0:The total amount of wall time = 162.949821 +0:The maximum resident set size (KB) = 923924 -Test 204 rap_control_dyn32_phy32_gnu PASS +Test 203 rap_clm_lake_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_dyn32_phy32_gnu -Checking test 205 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/control_wam_debug_gnu +Checking test 204 control_wam_debug_gnu results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -0:The total amount of wall time = 354.811821 -0:The maximum resident set size (KB) = 686624 +0:The total amount of wall time = 139.817923 +0:The maximum resident set size (KB) = 247720 -Test 205 hrrr_control_dyn32_phy32_gnu PASS +Test 204 control_wam_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_qr_dyn32_phy32_gnu -Checking test 206 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn32_phy32_gnu +Checking test 205 rap_control_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 700.611340 +0:The maximum resident set size (KB) = 722464 + +Test 205 rap_control_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_dyn32_phy32_gnu +Checking test 206 hrrr_control_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 352.878621 +0:The maximum resident set size (KB) = 684088 + +Test 206 hrrr_control_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_qr_dyn32_phy32_gnu +Checking test 207 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6639,7 +6540,7 @@ Checking test 206 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK @@ -6671,15 +6572,15 @@ Checking test 206 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -0:The total amount of wall time = 353.447841 -0:The maximum resident set size (KB) = 691908 +0:The total amount of wall time = 353.046668 +0:The maximum resident set size (KB) = 691132 -Test 206 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 207 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_2threads_dyn32_phy32_gnu -Checking test 207 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_2threads_dyn32_phy32_gnu +Checking test 208 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6693,47 +6594,47 @@ Checking test 207 rap_2threads_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 641.239386 -0:The maximum resident set size (KB) = 777960 - -Test 207 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 208 hrrr_control_2threads_dyn32_phy32_gnu results .... + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 641.509133 +0:The maximum resident set size (KB) = 777812 + +Test 208 rap_2threads_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 209 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6747,47 +6648,47 @@ Checking test 208 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 408.909996 -0:The maximum resident set size (KB) = 732500 - -Test 208 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 209 hrrr_control_decomp_dyn32_phy32_gnu results .... + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 404.894669 +0:The maximum resident set size (KB) = 730200 + +Test 209 hrrr_control_2threads_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 210 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6801,121 +6702,121 @@ Checking test 209 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 352.789958 -0:The maximum resident set size (KB) = 686292 - -Test 209 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_restart_dyn32_phy32_gnu -Checking test 210 rap_restart_dyn32_phy32_gnu results .... + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 349.585831 +0:The maximum resident set size (KB) = 684748 + +Test 210 hrrr_control_decomp_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_restart_dyn32_phy32_gnu +Checking test 211 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 523.367985 -0:The maximum resident set size (KB) = 614444 - -Test 210 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_dyn32_phy32_gnu -Checking test 211 hrrr_control_restart_dyn32_phy32_gnu results .... + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 520.761447 +0:The maximum resident set size (KB) = 614532 + +Test 211 rap_restart_dyn32_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_dyn32_phy32_gnu +Checking test 212 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 182.036275 -0:The maximum resident set size (KB) = 579340 +0:The total amount of wall time = 181.419848 +0:The maximum resident set size (KB) = 578084 -Test 211 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 212 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 212 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 213 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 182.433427 -0:The maximum resident set size (KB) = 546384 +0:The total amount of wall time = 181.726334 +0:The maximum resident set size (KB) = 544964 -Test 212 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 213 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_control_gnu -Checking test 213 conus13km_control_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_control_gnu +Checking test 214 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6923,48 +6824,48 @@ Checking test 213 conus13km_control_gnu results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 235.846503 -0:The maximum resident set size (KB) = 930824 +0:The total amount of wall time = 234.943980 +0:The maximum resident set size (KB) = 929296 -Test 213 conus13km_control_gnu PASS +Test 214 conus13km_control_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_control_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_2threads_gnu -Checking test 214 conus13km_2threads_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_2threads_gnu +Checking test 215 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.293116 -0:The maximum resident set size (KB) = 939960 +0:The total amount of wall time = 86.139856 +0:The maximum resident set size (KB) = 936616 -Test 214 conus13km_2threads_gnu PASS +Test 215 conus13km_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_restart_mismatch_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_restart_mismatch_gnu -Checking test 215 conus13km_restart_mismatch_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_restart_mismatch_gnu +Checking test 216 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 125.883295 -0:The maximum resident set size (KB) = 589060 +0:The total amount of wall time = 125.228953 +0:The maximum resident set size (KB) = 585408 -Test 215 conus13km_restart_mismatch_gnu PASS +Test 216 conus13km_restart_mismatch_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn64_phy32_gnu -Checking test 216 rap_control_dyn64_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn64_phy32_gnu +Checking test 217 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6978,131 +6879,138 @@ Checking test 216 rap_control_dyn64_phy32_gnu results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 409.992491 -0:The maximum resident set size (KB) = 777528 - -Test 216 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_debug_dyn32_phy32_gnu -Checking test 217 rap_control_debug_dyn32_phy32_gnu results .... + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 412.292370 +0:The maximum resident set size (KB) = 777576 + +Test 217 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_debug_dyn32_phy32_gnu +Checking test 218 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.419450 -0:The maximum resident set size (KB) = 720852 +0:The total amount of wall time = 141.328618 +0:The maximum resident set size (KB) = 720500 -Test 217 rap_control_debug_dyn32_phy32_gnu PASS +Test 218 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/hrrr_control_debug_dyn32_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/hrrr_control_debug_dyn32_phy32_gnu -Checking test 218 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/hrrr_control_debug_dyn32_phy32_gnu +Checking test 219 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 138.459782 -0:The maximum resident set size (KB) = 698728 +0:The total amount of wall time = 138.338740 +0:The maximum resident set size (KB) = 696916 -Test 218 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 219 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_debug_gnu -Checking test 219 conus13km_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_debug_gnu +Checking test 220 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -0:The total amount of wall time = 436.370499 -0:The maximum resident set size (KB) = 937060 +0:The total amount of wall time = 436.428354 +0:The maximum resident set size (KB) = 934944 -Test 219 conus13km_debug_gnu PASS +Test 220 conus13km_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_debug_2threads_gnu -Checking test 220 conus13km_debug_2threads_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_debug_2threads_gnu +Checking test 221 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.200458 -0:The maximum resident set size (KB) = 953388 +0:The total amount of wall time = 254.011829 +0:The maximum resident set size (KB) = 950160 -Test 220 conus13km_debug_2threads_gnu PASS +Test 221 conus13km_debug_2threads_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/conus13km_radar_tten_debug_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/conus13km_radar_tten_debug_gnu -Checking test 221 conus13km_radar_tten_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/conus13km_radar_tten_debug_gnu +Checking test 222 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 437.319917 -0:The maximum resident set size (KB) = 1004584 +0:The total amount of wall time = 437.532737 +0:The maximum resident set size (KB) = 1002596 -Test 221 conus13km_radar_tten_debug_gnu PASS +Test 222 conus13km_radar_tten_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/rap_control_debug_dyn64_phy32_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/rap_control_dyn64_phy32_debug_gnu -Checking test 222 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/rap_control_dyn64_phy32_debug_gnu +Checking test 223 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.727066 -0:The maximum resident set size (KB) = 782188 +0:The total amount of wall time = 146.674425 +0:The maximum resident set size (KB) = 781948 -Test 222 rap_control_dyn64_phy32_debug_gnu PASS +Test 223 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_p8_gnu -Checking test 223 cpld_control_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_p8_gnu +Checking test 224 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7129,52 +7037,52 @@ Checking test 223 cpld_control_p8_gnu results .... Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 496.447227 -0:The maximum resident set size (KB) = 3172084 +0:The total amount of wall time = 494.492090 +0:The maximum resident set size (KB) = 3170348 -Test 223 cpld_control_p8_gnu PASS +Test 224 cpld_control_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_c96_noaero_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_nowave_noaero_p8_gnu -Checking test 224 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_nowave_noaero_p8_gnu +Checking test 225 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7200,50 +7108,50 @@ Checking test 224 cpld_control_nowave_noaero_p8_gnu results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 241.972181 -0:The maximum resident set size (KB) = 1252312 +0:The total amount of wall time = 241.417515 +0:The maximum resident set size (KB) = 1250888 -Test 224 cpld_control_nowave_noaero_p8_gnu PASS +Test 225 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_debug_p8_gnu -Checking test 225 cpld_debug_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_debug_p8_gnu +Checking test 226 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7258,52 +7166,52 @@ Checking test 225 cpld_debug_p8_gnu results .... Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 190.347912 -0:The maximum resident set size (KB) = 3185832 +0:The total amount of wall time = 193.937429 +0:The maximum resident set size (KB) = 3186048 -Test 225 cpld_debug_p8_gnu PASS +Test 226 cpld_debug_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_control_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_control_pdlib_p8_gnu -Checking test 226 cpld_control_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_control_pdlib_p8_gnu +Checking test 227 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7329,52 +7237,52 @@ Checking test 226 cpld_control_pdlib_p8_gnu results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 1392.106721 -0:The maximum resident set size (KB) = 1300096 +0:The total amount of wall time = 1385.991516 +0:The maximum resident set size (KB) = 1300044 -Test 226 cpld_control_pdlib_p8_gnu PASS +Test 227 cpld_control_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/cpld_debug_pdlib_p8_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/cpld_debug_pdlib_p8_gnu -Checking test 227 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/cpld_debug_pdlib_p8_gnu +Checking test 228 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7388,62 +7296,62 @@ Checking test 227 cpld_debug_pdlib_p8_gnu results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.090000.MOM.res.nc ............ALT CHECK......OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 685.164988 -0:The maximum resident set size (KB) = 1458364 +0:The total amount of wall time = 690.629548 +0:The maximum resident set size (KB) = 1458600 -Test 227 cpld_debug_pdlib_p8_gnu PASS +Test 228 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230825/datm_cdeps_control_cfsr_gnu -working dir = /glade/scratch/zshrader/FV3_RT/rt_33948/datm_cdeps_control_cfsr_gnu -Checking test 228 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /glade/scratch/strahan/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_gnu +working dir = /glade/scratch/strahan/FV3_RT/rt_19002/datm_cdeps_control_cfsr_gnu +Checking test 229 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 181.078251 -0:The maximum resident set size (KB) = 683108 +0:The total amount of wall time = 181.263291 +0:The maximum resident set size (KB) = 682792 -Test 228 datm_cdeps_control_cfsr_gnu PASS +Test 229 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Tue Sep 12 19:47:18 MDT 2023 -Elapsed time: 01h:48m:36s. Have a nice day! +Fri Sep 29 15:34:08 MDT 2023 +Elapsed time: 02h:20m:15s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 07921523a0..6e29ea0175 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,57 +1,57 @@ -Thu 28 Sep 2023 09:06:43 AM EDT +Sun 01 Oct 2023 08:00:12 PM EDT Start Regression test -Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 +Testing UFSWM Hash: 04c3a5f8819e1116dbe4367e936cf089a0f3c2da Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atmaero_intel elapsed time 782 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 705 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 254 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 865 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 749 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 835 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 677 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 236 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 292 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 719 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 298 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 815 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 763 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 913 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 649 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 851 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 899 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1380 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 900 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 308 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 855 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_mixedmode_intel + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 652 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 720 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 635 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 316 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 806 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 693 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 738 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 733 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 152 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 232 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 239 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 759 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 216 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 787 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 780 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 812 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 788 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 833 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 980 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 339 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1355 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 988 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 319 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 884 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.586917 - 0: The maximum resident set size (KB) = 1568560 + 0: The total amount of wall time = 325.679118 + 0: The maximum resident set size (KB) = 1578412 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.967874 - 0: The maximum resident set size (KB) = 1467416 + 0: The total amount of wall time = 236.324311 + 0: The maximum resident set size (KB) = 1468192 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.087993 - 0: The maximum resident set size (KB) = 1602768 + 0: The total amount of wall time = 369.782356 + 0: The maximum resident set size (KB) = 1614800 Test 003 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.728551 - 0: The maximum resident set size (KB) = 1472968 + 0: The total amount of wall time = 208.470984 + 0: The maximum resident set size (KB) = 1476340 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -391,14 +391,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.133590 - 0: The maximum resident set size (KB) = 1613164 + 0: The total amount of wall time = 370.194187 + 0: The maximum resident set size (KB) = 1634268 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -451,14 +451,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.614424 - 0: The maximum resident set size (KB) = 1308048 + 0: The total amount of wall time = 210.958941 + 0: The maximum resident set size (KB) = 1329508 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -511,14 +511,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.977737 - 0: The maximum resident set size (KB) = 1827608 + 0: The total amount of wall time = 356.859027 + 0: The maximum resident set size (KB) = 1840704 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.147982 - 0: The maximum resident set size (KB) = 1599092 + 0: The total amount of wall time = 369.748032 + 0: The maximum resident set size (KB) = 1611340 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 293.536788 - 0: The maximum resident set size (KB) = 1559208 + 0: The total amount of wall time = 306.834402 + 0: The maximum resident set size (KB) = 1572016 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_bmark_p8_intel Checking test 010 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 622.745394 - 0: The maximum resident set size (KB) = 3067108 + 0: The total amount of wall time = 644.110713 + 0: The maximum resident set size (KB) = 3093944 Test 010 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_restart_bmark_p8_intel Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -741,14 +741,14 @@ Checking test 011 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.446060 - 0: The maximum resident set size (KB) = 3000736 + 0: The total amount of wall time = 485.810373 + 0: The maximum resident set size (KB) = 2998512 Test 011 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_noaero_p8_intel Checking test 012 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.356043 - 0: The maximum resident set size (KB) = 1485332 + 0: The total amount of wall time = 276.445284 + 0: The maximum resident set size (KB) = 1485036 Test 012 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_nowave_noaero_p8_intel Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.251573 - 0: The maximum resident set size (KB) = 1520748 + 0: The total amount of wall time = 279.878658 + 0: The maximum resident set size (KB) = 1521032 Test 013 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_debug_p8_intel Checking test 014 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.440197 - 0: The maximum resident set size (KB) = 1603840 + 0: The total amount of wall time = 534.497098 + 0: The maximum resident set size (KB) = 1622028 Test 014 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_debug_noaero_p8_intel Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.013478 - 0: The maximum resident set size (KB) = 1505152 + 0: The total amount of wall time = 363.199416 + 0: The maximum resident set size (KB) = 1468868 Test 015 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_noaero_p8_agrid_intel Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1069,14 +1069,14 @@ Checking test 016 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.895111 - 0: The maximum resident set size (KB) = 1522200 + 0: The total amount of wall time = 286.425445 + 0: The maximum resident set size (KB) = 1521968 Test 016 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_c48_intel Checking test 017 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1126,14 +1126,14 @@ Checking test 017 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 598.703254 - 0: The maximum resident set size (KB) = 2591088 + 0: The total amount of wall time = 594.894536 + 0: The maximum resident set size (KB) = 2591344 Test 017 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/cpld_control_p8_faster_intel Checking test 018 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.337163 - 0: The maximum resident set size (KB) = 1602872 + 0: The total amount of wall time = 358.663292 + 0: The maximum resident set size (KB) = 1613524 Test 018 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_flake_intel Checking test 019 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.637763 - 0: The maximum resident set size (KB) = 496052 + 0: The total amount of wall time = 207.950175 + 0: The maximum resident set size (KB) = 495976 Test 019 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_CubedSphereGrid_intel Checking test 020 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1250,36 +1250,36 @@ Checking test 020 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.197491 - 0: The maximum resident set size (KB) = 448052 + 0: The total amount of wall time = 136.556711 + 0: The maximum resident set size (KB) = 448300 Test 020 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_CubedSphereGrid_parallel_intel Checking test 021 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 153.748293 - 0: The maximum resident set size (KB) = 451908 + 0: The total amount of wall time = 148.995020 + 0: The maximum resident set size (KB) = 452300 Test 021 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_latlon_intel Checking test 022 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 022 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.579175 - 0: The maximum resident set size (KB) = 448060 + 0: The total amount of wall time = 137.877887 + 0: The maximum resident set size (KB) = 448040 Test 022 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_wrtGauss_netcdf_parallel_intel Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.569873 - 0: The maximum resident set size (KB) = 448304 + 0: The total amount of wall time = 145.025167 + 0: The maximum resident set size (KB) = 448536 Test 023 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_c48_intel Checking test 024 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1354,14 +1354,14 @@ Checking test 024 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.986081 -0: The maximum resident set size (KB) = 651616 +0: The total amount of wall time = 417.555562 +0: The maximum resident set size (KB) = 648684 Test 024 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_c192_intel Checking test 025 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1372,14 +1372,14 @@ Checking test 025 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 567.007144 - 0: The maximum resident set size (KB) = 554132 + 0: The total amount of wall time = 570.734080 + 0: The maximum resident set size (KB) = 554324 Test 025 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_c384_intel Checking test 026 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 026 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1080.122217 - 0: The maximum resident set size (KB) = 946192 + 0: The total amount of wall time = 1095.483084 + 0: The maximum resident set size (KB) = 946564 Test 026 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_c384gdas_intel Checking test 027 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1440,14 +1440,14 @@ Checking test 027 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 898.525066 - 0: The maximum resident set size (KB) = 1073492 + 0: The total amount of wall time = 914.998791 + 0: The maximum resident set size (KB) = 1073000 Test 027 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_stochy_intel Checking test 028 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1458,28 +1458,28 @@ Checking test 028 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.684779 - 0: The maximum resident set size (KB) = 454788 + 0: The total amount of wall time = 92.544798 + 0: The maximum resident set size (KB) = 454528 Test 028 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_stochy_restart_intel Checking test 029 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.004183 - 0: The maximum resident set size (KB) = 269148 + 0: The total amount of wall time = 50.346655 + 0: The maximum resident set size (KB) = 269152 Test 029 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_lndp_intel Checking test 030 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 030 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.877265 - 0: The maximum resident set size (KB) = 452748 + 0: The total amount of wall time = 84.296662 + 0: The maximum resident set size (KB) = 452840 Test 030 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_iovr4_intel Checking test 031 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1512,14 +1512,14 @@ Checking test 031 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.406684 - 0: The maximum resident set size (KB) = 448212 + 0: The total amount of wall time = 141.261180 + 0: The maximum resident set size (KB) = 448076 Test 031 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_iovr5_intel Checking test 032 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 032 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.596016 - 0: The maximum resident set size (KB) = 448180 + 0: The total amount of wall time = 139.708524 + 0: The maximum resident set size (KB) = 448164 Test 032 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_intel Checking test 033 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.620896 - 0: The maximum resident set size (KB) = 1419792 + 0: The total amount of wall time = 174.034398 + 0: The maximum resident set size (KB) = 1419780 Test 033 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_restart_p8_intel Checking test 034 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 034 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.268465 - 0: The maximum resident set size (KB) = 623620 + 0: The total amount of wall time = 94.536691 + 0: The maximum resident set size (KB) = 623700 Test 034 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_qr_p8_intel Checking test 035 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.765153 - 0: The maximum resident set size (KB) = 1428788 + 0: The total amount of wall time = 180.683877 + 0: The maximum resident set size (KB) = 1428752 Test 035 control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_restart_qr_p8_intel Checking test 036 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 036 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.788379 - 0: The maximum resident set size (KB) = 597224 + 0: The total amount of wall time = 96.803869 + 0: The maximum resident set size (KB) = 597412 Test 036 control_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_decomp_p8_intel Checking test 037 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 037 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.818662 - 0: The maximum resident set size (KB) = 1413712 + 0: The total amount of wall time = 186.026783 + 0: The maximum resident set size (KB) = 1413400 Test 037 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_2threads_p8_intel Checking test 038 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1834,14 +1834,14 @@ Checking test 038 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.902775 - 0: The maximum resident set size (KB) = 1500668 + 0: The total amount of wall time = 166.266701 + 0: The maximum resident set size (KB) = 1501984 Test 038 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_lndp_intel Checking test 039 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 039 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 318.069974 - 0: The maximum resident set size (KB) = 1420040 + 0: The total amount of wall time = 325.276108 + 0: The maximum resident set size (KB) = 1420108 Test 039 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_rrtmgp_intel Checking test 040 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.222369 - 0: The maximum resident set size (KB) = 1473336 + 0: The total amount of wall time = 235.976080 + 0: The maximum resident set size (KB) = 1473244 Test 040 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_mynn_intel Checking test 041 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.398091 - 0: The maximum resident set size (KB) = 1424912 + 0: The total amount of wall time = 181.278262 + 0: The maximum resident set size (KB) = 1423540 Test 041 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/merra2_thompson_intel Checking test 042 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.205371 - 0: The maximum resident set size (KB) = 1433524 + 0: The total amount of wall time = 204.456689 + 0: The maximum resident set size (KB) = 1433084 Test 042 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_control_intel Checking test 043 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,28 +2040,28 @@ Checking test 043 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.621975 - 0: The maximum resident set size (KB) = 805772 + 0: The total amount of wall time = 325.476528 + 0: The maximum resident set size (KB) = 805260 Test 043 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_restart_intel Checking test 044 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 159.696264 - 0: The maximum resident set size (KB) = 801888 + 0: The total amount of wall time = 162.889843 + 0: The maximum resident set size (KB) = 802844 Test 044 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_control_qr_intel Checking test 045 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2072,28 +2072,28 @@ Checking test 045 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.858259 - 0: The maximum resident set size (KB) = 805244 + 0: The total amount of wall time = 323.172141 + 0: The maximum resident set size (KB) = 805776 Test 045 regional_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_restart_qr_intel Checking test 046 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.813476 - 0: The maximum resident set size (KB) = 802980 + 0: The total amount of wall time = 166.628967 + 0: The maximum resident set size (KB) = 802896 Test 046 regional_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_decomp_intel Checking test 047 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2104,14 +2104,14 @@ Checking test 047 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 333.285772 - 0: The maximum resident set size (KB) = 803400 + 0: The total amount of wall time = 339.821255 + 0: The maximum resident set size (KB) = 802708 Test 047 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_2threads_intel Checking test 048 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2122,43 +2122,43 @@ Checking test 048 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.384153 - 0: The maximum resident set size (KB) = 809932 + 0: The total amount of wall time = 189.845146 + 0: The maximum resident set size (KB) = 809796 Test 048 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_noquilt_intel Checking test 049 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 312.420489 - 0: The maximum resident set size (KB) = 1078896 + 0: The total amount of wall time = 315.244553 + 0: The maximum resident set size (KB) = 1077576 Test 049 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_netcdf_parallel_intel Checking test 050 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 318.404332 - 0: The maximum resident set size (KB) = 801056 + 0: The total amount of wall time = 321.981457 + 0: The maximum resident set size (KB) = 800964 Test 050 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_2dwrtdecomp_intel Checking test 051 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 051 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.603669 - 0: The maximum resident set size (KB) = 809120 + 0: The total amount of wall time = 326.176646 + 0: The maximum resident set size (KB) = 802840 Test 051 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_wofs_intel Checking test 052 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 052 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.316579 - 0: The maximum resident set size (KB) = 550092 + 0: The total amount of wall time = 407.339393 + 0: The maximum resident set size (KB) = 550016 Test 052 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_intel Checking test 053 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2241,14 +2241,14 @@ Checking test 053 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.472250 - 0: The maximum resident set size (KB) = 833560 + 0: The total amount of wall time = 454.107259 + 0: The maximum resident set size (KB) = 833432 Test 053 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_spp_sppt_shum_skeb_intel Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2259,14 +2259,14 @@ Checking test 054 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.880565 - 0: The maximum resident set size (KB) = 920412 + 0: The total amount of wall time = 259.950525 + 0: The maximum resident set size (KB) = 917920 Test 054 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_decomp_intel Checking test 055 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2313,14 +2313,14 @@ Checking test 055 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.119993 - 0: The maximum resident set size (KB) = 824332 + 0: The total amount of wall time = 472.501382 + 0: The maximum resident set size (KB) = 822348 Test 055 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_2threads_intel Checking test 056 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 056 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.638905 - 0: The maximum resident set size (KB) = 911592 + 0: The total amount of wall time = 432.550548 + 0: The maximum resident set size (KB) = 907752 Test 056 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_restart_intel Checking test 057 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.651088 - 0: The maximum resident set size (KB) = 729320 + 0: The total amount of wall time = 232.765140 + 0: The maximum resident set size (KB) = 729368 Test 057 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_sfcdiff_intel Checking test 058 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 058 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.491466 - 0: The maximum resident set size (KB) = 833428 + 0: The total amount of wall time = 455.245560 + 0: The maximum resident set size (KB) = 833400 Test 058 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_sfcdiff_decomp_intel Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 059 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.073086 - 0: The maximum resident set size (KB) = 832312 + 0: The total amount of wall time = 469.159987 + 0: The maximum resident set size (KB) = 824544 Test 059 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_sfcdiff_restart_intel Checking test 060 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2567,14 +2567,14 @@ Checking test 060 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.401047 - 0: The maximum resident set size (KB) = 738188 + 0: The total amount of wall time = 333.832412 + 0: The maximum resident set size (KB) = 738620 Test 060 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_intel Checking test 061 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2621,14 +2621,14 @@ Checking test 061 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.089248 - 0: The maximum resident set size (KB) = 830808 + 0: The total amount of wall time = 231.973617 + 0: The maximum resident set size (KB) = 822008 Test 061 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_qr_intel Checking test 062 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2675,14 +2675,14 @@ Checking test 062 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.346180 - 0: The maximum resident set size (KB) = 834412 + 0: The total amount of wall time = 233.634155 + 0: The maximum resident set size (KB) = 840736 Test 062 hrrr_control_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_decomp_intel Checking test 063 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2729,14 +2729,14 @@ Checking test 063 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.877978 - 0: The maximum resident set size (KB) = 830556 + 0: The total amount of wall time = 233.734803 + 0: The maximum resident set size (KB) = 830408 Test 063 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_2threads_intel Checking test 064 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2783,42 +2783,42 @@ Checking test 064 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.792638 - 0: The maximum resident set size (KB) = 908972 + 0: The total amount of wall time = 211.140040 + 0: The maximum resident set size (KB) = 906504 Test 064 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_restart_intel Checking test 065 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.352237 - 0: The maximum resident set size (KB) = 685816 + 0: The total amount of wall time = 116.792943 + 0: The maximum resident set size (KB) = 681312 Test 065 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_restart_qr_intel Checking test 066 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.734128 - 0: The maximum resident set size (KB) = 600892 + 0: The total amount of wall time = 119.096438 + 0: The maximum resident set size (KB) = 586772 Test 066 hrrr_control_restart_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rrfs_v1beta_intel Checking test 067 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 067 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.732714 - 0: The maximum resident set size (KB) = 822392 + 0: The total amount of wall time = 444.078289 + 0: The maximum resident set size (KB) = 830832 Test 067 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rrfs_v1nssl_intel Checking test 068 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 068 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 547.888107 - 0: The maximum resident set size (KB) = 503972 + 0: The total amount of wall time = 547.706029 + 0: The maximum resident set size (KB) = 504320 Test 068 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rrfs_v1nssl_nohailnoccn_intel Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2909,123 +2909,15 @@ Checking test 069 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.552647 - 0: The maximum resident set size (KB) = 499732 + 0: The total amount of wall time = 532.252582 + 0: The maximum resident set size (KB) = 499600 Test 069 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_gf_intel -Checking test 070 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.399779 - 0: The maximum resident set size (KB) = 832896 - -Test 070 hrrr_gf_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_c3_intel -Checking test 071 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.729820 - 0: The maximum resident set size (KB) = 832932 - -Test 071 hrrr_c3_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmgt_intel -Checking test 072 control_csawmgt_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_csawmgt_intel +Checking test 070 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3035,15 +2927,15 @@ Checking test 072 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 361.979071 - 0: The maximum resident set size (KB) = 514144 + 0: The total amount of wall time = 364.895751 + 0: The maximum resident set size (KB) = 513156 -Test 072 control_csawmgt_intel PASS +Test 070 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_ras_intel -Checking test 073 control_ras_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_ras_intel +Checking test 071 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3053,27 +2945,27 @@ Checking test 073 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.362649 - 0: The maximum resident set size (KB) = 482756 + 0: The total amount of wall time = 195.804793 + 0: The maximum resident set size (KB) = 482580 -Test 073 control_ras_intel PASS +Test 071 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wam_intel -Checking test 074 control_wam_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_wam_intel +Checking test 072 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 120.627146 - 0: The maximum resident set size (KB) = 258048 + 0: The total amount of wall time = 121.486007 + 0: The maximum resident set size (KB) = 258176 -Test 074 control_wam_intel PASS +Test 072 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_faster_intel -Checking test 075 control_p8_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_faster_intel +Checking test 073 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3119,15 +3011,15 @@ Checking test 075 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.253572 - 0: The maximum resident set size (KB) = 1419668 + 0: The total amount of wall time = 163.374170 + 0: The maximum resident set size (KB) = 1419660 -Test 075 control_p8_faster_intel PASS +Test 073 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_control_faster_intel -Checking test 076 regional_control_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_control_faster_intel +Checking test 074 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3137,15 +3029,15 @@ Checking test 076 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.111091 - 0: The maximum resident set size (KB) = 805120 + 0: The total amount of wall time = 295.341653 + 0: The maximum resident set size (KB) = 805564 -Test 076 regional_control_faster_intel PASS +Test 074 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_CubedSphereGrid_debug_intel -Checking test 077 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_CubedSphereGrid_debug_intel +Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3171,348 +3063,376 @@ Checking test 077 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.350039 - 0: The maximum resident set size (KB) = 612988 + 0: The total amount of wall time = 151.819849 + 0: The maximum resident set size (KB) = 612064 -Test 077 control_CubedSphereGrid_debug_intel PASS +Test 075 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 078 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.919529 - 0: The maximum resident set size (KB) = 612644 + 0: The total amount of wall time = 159.587837 + 0: The maximum resident set size (KB) = 612324 -Test 078 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_stochy_debug_intel -Checking test 079 control_stochy_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_stochy_debug_intel +Checking test 077 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.351472 - 0: The maximum resident set size (KB) = 616872 + 0: The total amount of wall time = 176.095243 + 0: The maximum resident set size (KB) = 616540 -Test 079 control_stochy_debug_intel PASS +Test 077 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_lndp_debug_intel -Checking test 080 control_lndp_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_lndp_debug_intel +Checking test 078 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.830905 - 0: The maximum resident set size (KB) = 615528 + 0: The total amount of wall time = 154.623396 + 0: The maximum resident set size (KB) = 615160 -Test 080 control_lndp_debug_intel PASS +Test 078 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmg_debug_intel -Checking test 081 control_csawmg_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_csawmg_debug_intel +Checking test 079 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.952416 - 0: The maximum resident set size (KB) = 653020 + 0: The total amount of wall time = 243.641456 + 0: The maximum resident set size (KB) = 652740 -Test 081 control_csawmg_debug_intel PASS +Test 079 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_csawmgt_debug_intel -Checking test 082 control_csawmgt_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_csawmgt_debug_intel +Checking test 080 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.526500 - 0: The maximum resident set size (KB) = 653332 + 0: The total amount of wall time = 238.881803 + 0: The maximum resident set size (KB) = 652988 -Test 082 control_csawmgt_debug_intel PASS +Test 080 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_ras_debug_intel -Checking test 083 control_ras_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_ras_debug_intel +Checking test 081 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.380942 - 0: The maximum resident set size (KB) = 625452 + 0: The total amount of wall time = 160.294689 + 0: The maximum resident set size (KB) = 625180 -Test 083 control_ras_debug_intel PASS +Test 081 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_diag_debug_intel -Checking test 084 control_diag_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_diag_debug_intel +Checking test 082 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.327494 - 0: The maximum resident set size (KB) = 667860 + 0: The total amount of wall time = 156.398122 + 0: The maximum resident set size (KB) = 667604 -Test 084 control_diag_debug_intel PASS +Test 082 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_debug_p8_intel -Checking test 085 control_debug_p8_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_debug_p8_intel +Checking test 083 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.550211 - 0: The maximum resident set size (KB) = 1436992 + 0: The total amount of wall time = 171.698847 + 0: The maximum resident set size (KB) = 1436936 -Test 085 control_debug_p8_intel PASS +Test 083 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_debug_intel -Checking test 086 regional_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_debug_intel +Checking test 084 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1030.152970 - 0: The maximum resident set size (KB) = 829912 + 0: The total amount of wall time = 1031.419400 + 0: The maximum resident set size (KB) = 828996 + +Test 084 regional_debug_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_debug_intel +Checking test 085 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 280.647533 + 0: The maximum resident set size (KB) = 997048 + +Test 085 rap_control_debug_intel PASS + -Test 086 regional_debug_intel PASS +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_debug_intel +Checking test 086 hrrr_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 273.947820 + 0: The maximum resident set size (KB) = 993676 + +Test 086 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_debug_intel -Checking test 087 rap_control_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_gf_debug_intel +Checking test 087 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.690685 - 0: The maximum resident set size (KB) = 997392 + 0: The total amount of wall time = 279.228546 + 0: The maximum resident set size (KB) = 996712 -Test 087 rap_control_debug_intel PASS +Test 087 hrrr_gf_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_debug_intel -Checking test 088 hrrr_control_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_c3_debug_intel +Checking test 088 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.093434 - 0: The maximum resident set size (KB) = 990576 + 0: The total amount of wall time = 280.936511 + 0: The maximum resident set size (KB) = 996728 -Test 088 hrrr_control_debug_intel PASS +Test 088 hrrr_c3_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_unified_drag_suite_debug_intel Checking test 089 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.752952 - 0: The maximum resident set size (KB) = 993312 + 0: The total amount of wall time = 280.842850 + 0: The maximum resident set size (KB) = 997220 Test 089 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_diag_debug_intel Checking test 090 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.584741 - 0: The maximum resident set size (KB) = 1071484 + 0: The total amount of wall time = 295.382480 + 0: The maximum resident set size (KB) = 1079256 Test 090 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_cires_ugwp_debug_intel Checking test 091 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.463891 - 0: The maximum resident set size (KB) = 992984 + 0: The total amount of wall time = 286.924922 + 0: The maximum resident set size (KB) = 988616 Test 091 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_unified_ugwp_debug_intel Checking test 092 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.151821 - 0: The maximum resident set size (KB) = 997472 + 0: The total amount of wall time = 286.533858 + 0: The maximum resident set size (KB) = 997216 Test 092 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_lndp_debug_intel Checking test 093 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.953708 - 0: The maximum resident set size (KB) = 989984 + 0: The total amount of wall time = 283.430817 + 0: The maximum resident set size (KB) = 997912 Test 093 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_progcld_thompson_debug_intel Checking test 094 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.933864 - 0: The maximum resident set size (KB) = 997344 + 0: The total amount of wall time = 281.029960 + 0: The maximum resident set size (KB) = 997112 Test 094 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_noah_debug_intel Checking test 095 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.831685 - 0: The maximum resident set size (KB) = 997064 + 0: The total amount of wall time = 275.237841 + 0: The maximum resident set size (KB) = 996944 Test 095 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_sfcdiff_debug_intel Checking test 096 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.025645 - 0: The maximum resident set size (KB) = 997180 + 0: The total amount of wall time = 281.901490 + 0: The maximum resident set size (KB) = 988740 Test 096 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 465.305332 - 0: The maximum resident set size (KB) = 996996 + 0: The total amount of wall time = 466.813700 + 0: The maximum resident set size (KB) = 996632 Test 097 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rrfs_v1beta_debug_intel Checking test 098 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.586270 - 0: The maximum resident set size (KB) = 994600 + 0: The total amount of wall time = 280.575440 + 0: The maximum resident set size (KB) = 986400 Test 098 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_clm_lake_debug_intel Checking test 099 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.240073 - 0: The maximum resident set size (KB) = 999936 + 0: The total amount of wall time = 348.616257 + 0: The maximum resident set size (KB) = 998840 Test 099 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_flake_debug_intel Checking test 100 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.936563 - 0: The maximum resident set size (KB) = 997324 + 0: The total amount of wall time = 284.689490 + 0: The maximum resident set size (KB) = 997028 Test 100 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_wam_debug_intel Checking test 101 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.619724 - 0: The maximum resident set size (KB) = 287928 + 0: The total amount of wall time = 288.440551 + 0: The maximum resident set size (KB) = 287684 Test 101 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3523,14 +3443,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 237.947044 - 0: The maximum resident set size (KB) = 819080 + 0: The total amount of wall time = 240.829265 + 0: The maximum resident set size (KB) = 819280 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_dyn32_phy32_intel Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3577,14 +3497,14 @@ Checking test 103 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.992247 - 0: The maximum resident set size (KB) = 718664 + 0: The total amount of wall time = 375.096183 + 0: The maximum resident set size (KB) = 709004 Test 103 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_dyn32_phy32_intel Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3551,14 @@ Checking test 104 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.618828 - 0: The maximum resident set size (KB) = 707044 + 0: The total amount of wall time = 195.926705 + 0: The maximum resident set size (KB) = 717164 Test 104 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_qr_dyn32_phy32_intel Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3605,14 @@ Checking test 105 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.378335 - 0: The maximum resident set size (KB) = 713008 + 0: The total amount of wall time = 196.421580 + 0: The maximum resident set size (KB) = 716216 Test 105 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_2threads_dyn32_phy32_intel Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3659,14 @@ Checking test 106 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.261888 - 0: The maximum resident set size (KB) = 769668 + 0: The total amount of wall time = 350.975720 + 0: The maximum resident set size (KB) = 759072 Test 106 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_2threads_dyn32_phy32_intel Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3713,14 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.247236 - 0: The maximum resident set size (KB) = 767180 + 0: The total amount of wall time = 181.253572 + 0: The maximum resident set size (KB) = 761724 Test 107 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_decomp_dyn32_phy32_intel Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3767,14 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.213155 - 0: The maximum resident set size (KB) = 715736 + 0: The total amount of wall time = 200.826311 + 0: The maximum resident set size (KB) = 716420 Test 108 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_restart_dyn32_phy32_intel Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,42 +3813,42 @@ Checking test 109 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.637719 - 0: The maximum resident set size (KB) = 632264 + 0: The total amount of wall time = 277.271154 + 0: The maximum resident set size (KB) = 631504 Test 109 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_restart_dyn32_phy32_intel Checking test 110 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.797177 - 0: The maximum resident set size (KB) = 594464 + 0: The total amount of wall time = 101.893618 + 0: The maximum resident set size (KB) = 592688 Test 110 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 111 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.754469 - 0: The maximum resident set size (KB) = 560824 + 0: The total amount of wall time = 103.207541 + 0: The maximum resident set size (KB) = 560896 Test 111 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3944,40 +3864,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 119.125825 - 0: The maximum resident set size (KB) = 941028 + 0: The total amount of wall time = 130.712222 + 0: The maximum resident set size (KB) = 940644 Test 112 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.832138 - 0: The maximum resident set size (KB) = 947904 + 0: The total amount of wall time = 56.346208 + 0: The maximum resident set size (KB) = 947080 Test 113 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.635083 - 0: The maximum resident set size (KB) = 887620 + 0: The total amount of wall time = 73.970658 + 0: The maximum resident set size (KB) = 885384 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,124 +3944,152 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.153110 - 0: The maximum resident set size (KB) = 728948 + 0: The total amount of wall time = 256.073253 + 0: The maximum resident set size (KB) = 729692 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.969350 - 0: The maximum resident set size (KB) = 873656 + 0: The total amount of wall time = 281.397659 + 0: The maximum resident set size (KB) = 881560 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.314416 - 0: The maximum resident set size (KB) = 880876 + 0: The total amount of wall time = 276.128515 + 0: The maximum resident set size (KB) = 872932 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 866.374519 - 0: The maximum resident set size (KB) = 974452 + 0: The total amount of wall time = 875.774074 + 0: The maximum resident set size (KB) = 971460 Test 118 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_debug_2threads_intel -Checking test 119 conus13km_debug_2threads_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_debug_qr_intel +Checking test 119 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 911.792182 + 0: The maximum resident set size (KB) = 639948 + +Test 119 conus13km_debug_qr_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_debug_2threads_intel +Checking test 120 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.568919 - 0: The maximum resident set size (KB) = 981132 + 0: The total amount of wall time = 503.571622 + 0: The maximum resident set size (KB) = 978748 -Test 119 conus13km_debug_2threads_intel PASS +Test 120 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/conus13km_radar_tten_debug_intel -Checking test 120 conus13km_radar_tten_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/conus13km_radar_tten_debug_intel +Checking test 121 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 865.623112 - 0: The maximum resident set size (KB) = 1042320 + 0: The total amount of wall time = 875.435745 + 0: The maximum resident set size (KB) = 1042248 -Test 120 conus13km_radar_tten_debug_intel PASS +Test 121 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/rap_control_dyn64_phy32_debug_intel -Checking test 121 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/rap_control_dyn64_phy32_debug_intel +Checking test 122 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.477001 - 0: The maximum resident set size (KB) = 884736 + 0: The total amount of wall time = 288.591754 + 0: The maximum resident set size (KB) = 884608 -Test 121 rap_control_dyn64_phy32_debug_intel PASS +Test 122 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_intel -Checking test 122 hafs_regional_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_atm_intel +Checking test 123 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 230.670283 - 0: The maximum resident set size (KB) = 876392 + 0: The total amount of wall time = 237.590111 + 0: The maximum resident set size (KB) = 879128 -Test 122 hafs_regional_atm_intel PASS +Test 123 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 123 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 124 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 272.413915 - 0: The maximum resident set size (KB) = 1203248 + 0: The total amount of wall time = 278.934574 + 0: The maximum resident set size (KB) = 1206816 -Test 123 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 124 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_ocn_intel -Checking test 124 hafs_regional_atm_ocn_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_atm_ocn_intel +Checking test 125 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4149,15 +4097,15 @@ Checking test 124 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 412.356602 - 0: The maximum resident set size (KB) = 907528 + 0: The total amount of wall time = 438.408548 + 0: The maximum resident set size (KB) = 905572 -Test 124 hafs_regional_atm_ocn_intel PASS +Test 125 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_wav_intel -Checking test 125 hafs_regional_atm_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_atm_wav_intel +Checking test 126 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4165,15 +4113,15 @@ Checking test 125 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 903.872701 - 0: The maximum resident set size (KB) = 1089352 + 0: The total amount of wall time = 902.488450 + 0: The maximum resident set size (KB) = 931156 -Test 125 hafs_regional_atm_wav_intel PASS +Test 126 hafs_regional_atm_wav_intel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_atm_ocn_wav_intel -Checking test 126 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_atm_ocn_wav_intel +Checking test 127 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4183,15 +4131,15 @@ Checking test 126 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1016.628770 - 0: The maximum resident set size (KB) = 965504 + 0: The total amount of wall time = 1019.951304 + 0: The maximum resident set size (KB) = 958020 -Test 126 hafs_regional_atm_ocn_wav_intel PASS +Test 127 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_1nest_atm_intel -Checking test 127 hafs_regional_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_1nest_atm_intel +Checking test 128 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4212,15 +4160,15 @@ Checking test 127 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 332.596162 - 0: The maximum resident set size (KB) = 427888 + 0: The total amount of wall time = 337.213417 + 0: The maximum resident set size (KB) = 427824 -Test 127 hafs_regional_1nest_atm_intel PASS +Test 128 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_1nest_atm_qr_intel -Checking test 128 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_1nest_atm_qr_intel +Checking test 129 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4241,15 +4189,15 @@ Checking test 128 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 381.526582 - 0: The maximum resident set size (KB) = 297988 + 0: The total amount of wall time = 382.788633 + 0: The maximum resident set size (KB) = 300160 -Test 128 hafs_regional_1nest_atm_qr_intel PASS +Test 129 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_telescopic_2nests_atm_intel -Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_telescopic_2nests_atm_intel +Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4257,15 +4205,15 @@ Checking test 129 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 380.786152 - 0: The maximum resident set size (KB) = 438472 + 0: The total amount of wall time = 385.726741 + 0: The maximum resident set size (KB) = 440436 -Test 129 hafs_regional_telescopic_2nests_atm_intel PASS +Test 130 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_1nest_atm_intel -Checking test 130 hafs_global_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_global_1nest_atm_intel +Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4311,15 +4259,15 @@ Checking test 130 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 151.950047 - 0: The maximum resident set size (KB) = 233864 + 0: The total amount of wall time = 155.619084 + 0: The maximum resident set size (KB) = 233828 -Test 130 hafs_global_1nest_atm_intel PASS +Test 131 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_1nest_atm_qr_intel -Checking test 131 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_global_1nest_atm_qr_intel +Checking test 132 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4365,15 +4313,15 @@ Checking test 131 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 207.414487 - 0: The maximum resident set size (KB) = 214672 + 0: The total amount of wall time = 221.084973 + 0: The maximum resident set size (KB) = 214620 -Test 131 hafs_global_1nest_atm_qr_intel PASS +Test 132 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_multiple_4nests_atm_intel -Checking test 132 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_global_multiple_4nests_atm_intel +Checking test 133 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4454,15 +4402,15 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 425.061083 - 0: The maximum resident set size (KB) = 258444 + 0: The total amount of wall time = 434.747625 + 0: The maximum resident set size (KB) = 257844 -Test 132 hafs_global_multiple_4nests_atm_intel PASS +Test 133 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_multiple_4nests_atm_qr_intel -Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_global_multiple_4nests_atm_qr_intel +Checking test 134 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4543,15 +4491,15 @@ Checking test 133 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 577.572210 - 0: The maximum resident set size (KB) = 257944 + 0: The total amount of wall time = 605.636376 + 0: The maximum resident set size (KB) = 258028 -Test 133 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 134 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_specified_moving_1nest_atm_intel -Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_specified_moving_1nest_atm_intel +Checking test 135 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4559,15 +4507,15 @@ Checking test 134 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 213.877773 + 0: The total amount of wall time = 217.589184 0: The maximum resident set size (KB) = 447508 -Test 134 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 135 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_storm_following_1nest_atm_intel +Checking test 136 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4588,15 +4536,15 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 197.196712 - 0: The maximum resident set size (KB) = 445028 + 0: The total amount of wall time = 204.615079 + 0: The maximum resident set size (KB) = 444704 -Test 135 hafs_regional_storm_following_1nest_atm_intel PASS +Test 136 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4617,15 +4565,15 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 248.881935 - 0: The maximum resident set size (KB) = 331224 + 0: The total amount of wall time = 246.831385 + 0: The maximum resident set size (KB) = 332052 -Test 136 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 137 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4633,43 +4581,43 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 246.163127 - 0: The maximum resident set size (KB) = 474636 + 0: The total amount of wall time = 257.702996 + 0: The maximum resident set size (KB) = 474784 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_global_storm_following_1nest_atm_intel -Checking test 138 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_global_storm_following_1nest_atm_intel +Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.867522 - 0: The maximum resident set size (KB) = 254656 + 0: The total amount of wall time = 61.288194 + 0: The maximum resident set size (KB) = 254112 -Test 138 hafs_global_storm_following_1nest_atm_intel PASS +Test 139 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 753.843530 - 0: The maximum resident set size (KB) = 493892 + 0: The total amount of wall time = 761.261531 + 0: The maximum resident set size (KB) = 484272 -Test 139 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4679,162 +4627,162 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 635.086011 - 0: The maximum resident set size (KB) = 524688 + 0: The total amount of wall time = 640.230151 + 0: The maximum resident set size (KB) = 527640 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_docn_intel -Checking test 141 hafs_regional_docn_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_docn_intel +Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 351.916493 - 0: The maximum resident set size (KB) = 904508 + 0: The total amount of wall time = 365.359941 + 0: The maximum resident set size (KB) = 908544 -Test 141 hafs_regional_docn_intel PASS +Test 142 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_docn_oisst_intel -Checking test 142 hafs_regional_docn_oisst_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_docn_oisst_intel +Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 353.129824 - 0: The maximum resident set size (KB) = 880168 + 0: The total amount of wall time = 359.133059 + 0: The maximum resident set size (KB) = 877232 -Test 142 hafs_regional_docn_oisst_intel PASS +Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/hafs_regional_datm_cdeps_intel -Checking test 143 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/hafs_regional_datm_cdeps_intel +Checking test 144 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1179.958180 - 0: The maximum resident set size (KB) = 800820 + 0: The total amount of wall time = 1190.731504 + 0: The maximum resident set size (KB) = 848140 -Test 143 hafs_regional_datm_cdeps_intel PASS +Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_cfsr_intel -Checking test 144 datm_cdeps_control_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_control_cfsr_intel +Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.051890 - 0: The maximum resident set size (KB) = 731468 + 0: The total amount of wall time = 167.620328 + 0: The maximum resident set size (KB) = 719844 -Test 144 datm_cdeps_control_cfsr_intel PASS +Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_restart_cfsr_intel -Checking test 145 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_restart_cfsr_intel +Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.373430 - 0: The maximum resident set size (KB) = 718884 + 0: The total amount of wall time = 103.157731 + 0: The maximum resident set size (KB) = 718960 -Test 145 datm_cdeps_restart_cfsr_intel PASS +Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_gefs_intel -Checking test 146 datm_cdeps_control_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_control_gefs_intel +Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.747987 - 0: The maximum resident set size (KB) = 614216 + 0: The total amount of wall time = 157.173059 + 0: The maximum resident set size (KB) = 613256 -Test 146 datm_cdeps_control_gefs_intel PASS +Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_iau_gefs_intel -Checking test 147 datm_cdeps_iau_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_iau_gefs_intel +Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.891001 - 0: The maximum resident set size (KB) = 614992 + 0: The total amount of wall time = 158.167524 + 0: The maximum resident set size (KB) = 613340 -Test 147 datm_cdeps_iau_gefs_intel PASS +Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_stochy_gefs_intel -Checking test 148 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_stochy_gefs_intel +Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.252509 - 0: The maximum resident set size (KB) = 617172 + 0: The total amount of wall time = 160.501417 + 0: The maximum resident set size (KB) = 611824 -Test 148 datm_cdeps_stochy_gefs_intel PASS +Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_ciceC_cfsr_intel -Checking test 149 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_ciceC_cfsr_intel +Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.642173 - 0: The maximum resident set size (KB) = 731460 + 0: The total amount of wall time = 167.512691 + 0: The maximum resident set size (KB) = 731436 -Test 149 datm_cdeps_ciceC_cfsr_intel PASS +Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_bulk_cfsr_intel -Checking test 150 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_bulk_cfsr_intel +Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.894133 - 0: The maximum resident set size (KB) = 731452 + 0: The total amount of wall time = 167.560769 + 0: The maximum resident set size (KB) = 731392 -Test 150 datm_cdeps_bulk_cfsr_intel PASS +Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_bulk_gefs_intel -Checking test 151 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_bulk_gefs_intel +Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.828546 - 0: The maximum resident set size (KB) = 611000 + 0: The total amount of wall time = 159.327339 + 0: The maximum resident set size (KB) = 613388 -Test 151 datm_cdeps_bulk_gefs_intel PASS +Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_mx025_cfsr_intel -Checking test 152 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_mx025_cfsr_intel +Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4842,15 +4790,15 @@ Checking test 152 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 383.238291 - 0: The maximum resident set size (KB) = 514476 + 0: The total amount of wall time = 397.542851 + 0: The maximum resident set size (KB) = 512344 -Test 152 datm_cdeps_mx025_cfsr_intel PASS +Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_mx025_gefs_intel -Checking test 153 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_mx025_gefs_intel +Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4858,78 +4806,78 @@ Checking test 153 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 375.329596 - 0: The maximum resident set size (KB) = 497084 + 0: The total amount of wall time = 400.121040 + 0: The maximum resident set size (KB) = 497444 -Test 153 datm_cdeps_mx025_gefs_intel PASS +Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_multiple_files_cfsr_intel -Checking test 154 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_multiple_files_cfsr_intel +Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.314894 - 0: The maximum resident set size (KB) = 731356 + 0: The total amount of wall time = 167.559539 + 0: The maximum resident set size (KB) = 729060 -Test 154 datm_cdeps_multiple_files_cfsr_intel PASS +Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_3072x1536_cfsr_intel -Checking test 155 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_3072x1536_cfsr_intel +Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 271.151217 - 0: The maximum resident set size (KB) = 1965080 + 0: The total amount of wall time = 268.570019 + 0: The maximum resident set size (KB) = 1967004 -Test 155 datm_cdeps_3072x1536_cfsr_intel PASS +Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_gfs_intel -Checking test 156 datm_cdeps_gfs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_gfs_intel +Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.030094 - 0: The maximum resident set size (KB) = 1965692 + 0: The total amount of wall time = 268.333896 + 0: The maximum resident set size (KB) = 1963396 -Test 156 datm_cdeps_gfs_intel PASS +Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_debug_cfsr_intel -Checking test 157 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_debug_cfsr_intel +Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.410228 - 0: The maximum resident set size (KB) = 714860 + 0: The total amount of wall time = 370.804800 + 0: The maximum resident set size (KB) = 703156 -Test 157 datm_cdeps_debug_cfsr_intel PASS +Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_control_cfsr_faster_intel -Checking test 158 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_control_cfsr_faster_intel +Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 162.277583 - 0: The maximum resident set size (KB) = 719740 + 0: The total amount of wall time = 163.451113 + 0: The maximum resident set size (KB) = 731144 -Test 158 datm_cdeps_control_cfsr_faster_intel PASS +Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_lnd_gswp3_intel -Checking test 159 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_lnd_gswp3_intel +Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4937,15 +4885,15 @@ Checking test 159 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.516944 - 0: The maximum resident set size (KB) = 118324 + 0: The total amount of wall time = 9.506200 + 0: The maximum resident set size (KB) = 118156 -Test 159 datm_cdeps_lnd_gswp3_intel PASS +Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/datm_cdeps_lnd_gswp3_rst_intel -Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/datm_cdeps_lnd_gswp3_rst_intel +Checking test 161 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4953,15 +4901,15 @@ Checking test 160 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.592159 - 0: The maximum resident set size (KB) = 116152 + 0: The total amount of wall time = 16.964721 + 0: The maximum resident set size (KB) = 116172 -Test 160 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_p8_atmlnd_sbs_intel -Checking test 161 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_p8_atmlnd_sbs_intel +Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4999,61 +4947,61 @@ Checking test 161 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 214.025669 - 0: The maximum resident set size (KB) = 1454932 - -Test 161 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmwav_control_noaero_p8_intel -Checking test 162 atmwav_control_noaero_p8_intel results .... + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 222.658298 + 0: The maximum resident set size (KB) = 1454744 + +Test 162 control_p8_atmlnd_sbs_intel PASS + + +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/atmwav_control_noaero_p8_intel +Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5095,15 +5043,15 @@ Checking test 162 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.699035 - 0: The maximum resident set size (KB) = 1437644 + 0: The total amount of wall time = 103.783494 + 0: The maximum resident set size (KB) = 1437404 -Test 162 atmwav_control_noaero_p8_intel PASS +Test 163 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/control_atmwav_intel -Checking test 163 control_atmwav_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/control_atmwav_intel +Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5146,15 +5094,15 @@ Checking test 163 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.905817 - 0: The maximum resident set size (KB) = 461024 + 0: The total amount of wall time = 93.802511 + 0: The maximum resident set size (KB) = 463064 -Test 163 control_atmwav_intel PASS +Test 164 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_intel -Checking test 164 atmaero_control_p8_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/atmaero_control_p8_intel +Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5197,15 +5145,15 @@ Checking test 164 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.294450 - 0: The maximum resident set size (KB) = 1482396 + 0: The total amount of wall time = 243.983566 + 0: The maximum resident set size (KB) = 1481148 -Test 164 atmaero_control_p8_intel PASS +Test 165 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_rad_intel -Checking test 165 atmaero_control_p8_rad_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/atmaero_control_p8_rad_intel +Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5248,15 +5196,15 @@ Checking test 165 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.026078 - 0: The maximum resident set size (KB) = 1524808 + 0: The total amount of wall time = 298.415782 + 0: The maximum resident set size (KB) = 1501180 -Test 165 atmaero_control_p8_rad_intel PASS +Test 166 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/atmaero_control_p8_rad_micro_intel -Checking test 166 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/atmaero_control_p8_rad_micro_intel +Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5299,15 +5247,15 @@ Checking test 166 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.344849 - 0: The maximum resident set size (KB) = 1509728 + 0: The total amount of wall time = 298.525772 + 0: The maximum resident set size (KB) = 1509444 -Test 166 atmaero_control_p8_rad_micro_intel PASS +Test 167 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_atmaq_intel -Checking test 167 regional_atmaq_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_atmaq_intel +Checking test 168 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5322,15 +5270,15 @@ Checking test 167 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 628.880092 - 0: The maximum resident set size (KB) = 5046392 + 0: The total amount of wall time = 661.646615 + 0: The maximum resident set size (KB) = 5048892 -Test 167 regional_atmaq_intel PASS Tries: 2 +Test 168 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_804/regional_atmaq_faster_intel -Checking test 168 regional_atmaq_faster_intel results .... +baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16995/regional_atmaq_faster_intel +Checking test 169 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5345,12 +5293,12 @@ Checking test 168 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 643.822762 - 0: The maximum resident set size (KB) = 5045856 + 0: The total amount of wall time = 620.288301 + 0: The maximum resident set size (KB) = 5059304 -Test 168 regional_atmaq_faster_intel PASS +Test 169 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 28 Sep 2023 10:19:46 AM EDT -Elapsed time: 01h:13m:11s. Have a nice day! +Mon 02 Oct 2023 03:00:55 AM EDT +Elapsed time: 07h:00m:56s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e230f41b2c..1a7ede3af6 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,74 +1,74 @@ -Thu Sep 28 05:47:21 UTC 2023 +Mon Oct 2 12:47:18 UTC 2023 Start Regression test -Testing UFSWM Hash: 5bec6063795438c3a8bfddee98bf0930b6694e44 +Testing UFSWM Hash: 04c3a5f8819e1116dbe4367e936cf089a0f3c2da Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 233 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 165 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 587 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 261 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 529 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 552 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 521 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 547 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 580 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 245 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 655 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 163 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 170 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 268 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 538 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 543 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 518 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 541 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 551 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 545 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 565 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 198 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 605 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 579 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 648 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 569 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 195 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 590 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 636 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 588 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 120 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 660 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 133 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 943 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 91 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_mixedmode_intel +Compile rrfs_dyn64_phy32_intel elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 571 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 218 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 621 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 883 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 638 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 131 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 240 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 964 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 668 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 90 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,14 +133,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.780183 - 0: The maximum resident set size (KB) = 3161880 + 0: The total amount of wall time = 310.011081 + 0: The maximum resident set size (KB) = 3113804 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -204,14 +204,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 218.920841 - 0: The maximum resident set size (KB) = 1696156 + 0: The total amount of wall time = 223.484889 + 0: The maximum resident set size (KB) = 1693664 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -276,14 +276,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.697698 - 0: The maximum resident set size (KB) = 3188396 + 0: The total amount of wall time = 342.552084 + 0: The maximum resident set size (KB) = 3182668 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -336,14 +336,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.583219 - 0: The maximum resident set size (KB) = 3254384 + 0: The total amount of wall time = 193.342926 + 0: The maximum resident set size (KB) = 3240384 Test 004 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -408,14 +408,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.632968 - 0: The maximum resident set size (KB) = 3194044 + 0: The total amount of wall time = 341.990015 + 0: The maximum resident set size (KB) = 3214268 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.776084 - 0: The maximum resident set size (KB) = 3086804 + 0: The total amount of wall time = 197.288091 + 0: The maximum resident set size (KB) = 3096100 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.582410 - 0: The maximum resident set size (KB) = 3532420 + 0: The total amount of wall time = 324.374214 + 0: The maximum resident set size (KB) = 3534420 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -588,14 +588,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.249792 - 0: The maximum resident set size (KB) = 3181648 + 0: The total amount of wall time = 343.121312 + 0: The maximum resident set size (KB) = 3180124 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -648,14 +648,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.826467 - 0: The maximum resident set size (KB) = 3034984 + 0: The total amount of wall time = 280.284568 + 0: The maximum resident set size (KB) = 3042236 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.335382 - 0: The maximum resident set size (KB) = 3183228 + 0: The total amount of wall time = 346.239468 + 0: The maximum resident set size (KB) = 3197748 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 582.675273 - 0: The maximum resident set size (KB) = 3406332 + 0: The total amount of wall time = 577.776045 + 0: The maximum resident set size (KB) = 3406128 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 368.332664 - 0: The maximum resident set size (KB) = 3610876 + 0: The total amount of wall time = 364.461341 + 0: The maximum resident set size (KB) = 3607456 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 628.065279 - 0: The maximum resident set size (KB) = 4067672 + 0: The total amount of wall time = 643.263223 + 0: The maximum resident set size (KB) = 4101876 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -950,14 +950,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.405235 - 0: The maximum resident set size (KB) = 4361068 + 0: The total amount of wall time = 498.350992 + 0: The maximum resident set size (KB) = 4360940 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.994166 - 0: The maximum resident set size (KB) = 1692272 + 0: The total amount of wall time = 265.814896 + 0: The maximum resident set size (KB) = 1710700 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1090,14 +1090,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.940361 - 0: The maximum resident set size (KB) = 1768124 + 0: The total amount of wall time = 261.095356 + 0: The maximum resident set size (KB) = 1750568 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 513.902519 - 0: The maximum resident set size (KB) = 3179124 + 0: The total amount of wall time = 522.007545 + 0: The maximum resident set size (KB) = 3221876 Test 017 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.550617 - 0: The maximum resident set size (KB) = 1746804 + 0: The total amount of wall time = 351.096095 + 0: The maximum resident set size (KB) = 1745244 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.438815 - 0: The maximum resident set size (KB) = 1758520 + 0: The total amount of wall time = 263.002180 + 0: The maximum resident set size (KB) = 1750424 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 586.940149 - 0: The maximum resident set size (KB) = 2819140 + 0: The total amount of wall time = 582.611690 + 0: The maximum resident set size (KB) = 2828292 Test 020 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1407,14 +1407,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.172487 - 0: The maximum resident set size (KB) = 3192368 + 0: The total amount of wall time = 322.449110 + 0: The maximum resident set size (KB) = 3198500 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1199.485999 - 0: The maximum resident set size (KB) = 1751688 + 0: The total amount of wall time = 1208.833383 + 0: The maximum resident set size (KB) = 1754608 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 569.429796 - 0: The maximum resident set size (KB) = 1139484 + 0: The total amount of wall time = 561.898655 + 0: The maximum resident set size (KB) = 1129948 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1091.505542 - 0: The maximum resident set size (KB) = 1667112 + 0: The total amount of wall time = 1087.571263 + 0: The maximum resident set size (KB) = 1637900 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1374.570981 - 0: The maximum resident set size (KB) = 1690268 + 0: The total amount of wall time = 1375.462114 + 0: The maximum resident set size (KB) = 1676872 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.520782 - 0: The maximum resident set size (KB) = 686120 + 0: The total amount of wall time = 190.412330 + 0: The maximum resident set size (KB) = 719644 Test 026 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1719,16 +1719,16 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.836928 - 0: The maximum resident set size (KB) = 635180 + 0: The total amount of wall time = 130.372089 + 0: The maximum resident set size (KB) = 634164 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.779575 - 0: The maximum resident set size (KB) = 643600 + 0: The total amount of wall time = 140.196677 + 0: The maximum resident set size (KB) = 649388 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,14 +1759,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.137254 - 0: The maximum resident set size (KB) = 637612 + 0: The total amount of wall time = 133.709359 + 0: The maximum resident set size (KB) = 641156 Test 029 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.422689 - 0: The maximum resident set size (KB) = 640500 + 0: The total amount of wall time = 136.324285 + 0: The maximum resident set size (KB) = 639536 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1823,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.114570 -0: The maximum resident set size (KB) = 839324 +0: The total amount of wall time = 368.437809 +0: The maximum resident set size (KB) = 832496 Test 031 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.032822 - 0: The maximum resident set size (KB) = 784468 + 0: The total amount of wall time = 529.071489 + 0: The maximum resident set size (KB) = 782468 Test 032 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1859,14 +1859,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.319361 - 0: The maximum resident set size (KB) = 1379528 + 0: The total amount of wall time = 526.723994 + 0: The maximum resident set size (KB) = 1388148 Test 033 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1909,14 +1909,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.956346 - 0: The maximum resident set size (KB) = 1490884 + 0: The total amount of wall time = 460.083815 + 0: The maximum resident set size (KB) = 1468432 Test 034 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1927,28 +1927,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.666605 - 0: The maximum resident set size (KB) = 644080 + 0: The total amount of wall time = 89.701340 + 0: The maximum resident set size (KB) = 642912 Test 035 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.237887 - 0: The maximum resident set size (KB) = 545628 + 0: The total amount of wall time = 50.034227 + 0: The maximum resident set size (KB) = 553112 Test 036 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1959,14 +1959,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.336498 - 0: The maximum resident set size (KB) = 638356 + 0: The total amount of wall time = 82.072714 + 0: The maximum resident set size (KB) = 638964 Test 037 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1981,14 +1981,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.491929 - 0: The maximum resident set size (KB) = 637268 + 0: The total amount of wall time = 136.582305 + 0: The maximum resident set size (KB) = 637944 Test 038 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2003,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.669837 - 0: The maximum resident set size (KB) = 638184 + 0: The total amount of wall time = 137.146103 + 0: The maximum resident set size (KB) = 621820 Test 039 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.319157 - 0: The maximum resident set size (KB) = 1606064 + 0: The total amount of wall time = 166.488199 + 0: The maximum resident set size (KB) = 1615220 Test 040 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2103,14 +2103,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.755622 - 0: The maximum resident set size (KB) = 928008 + 0: The total amount of wall time = 89.640837 + 0: The maximum resident set size (KB) = 923848 Test 041 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2157,14 +2157,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.372331 - 0: The maximum resident set size (KB) = 1618068 + 0: The total amount of wall time = 171.370315 + 0: The maximum resident set size (KB) = 1616896 Test 042 control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2203,14 +2203,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.243101 - 0: The maximum resident set size (KB) = 884780 + 0: The total amount of wall time = 89.708466 + 0: The maximum resident set size (KB) = 879480 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.054189 - 0: The maximum resident set size (KB) = 1591064 + 0: The total amount of wall time = 177.597334 + 0: The maximum resident set size (KB) = 1595848 Test 044 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2303,14 +2303,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.379387 - 0: The maximum resident set size (KB) = 1684776 + 0: The total amount of wall time = 156.893171 + 0: The maximum resident set size (KB) = 1699920 Test 045 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.306371 - 0: The maximum resident set size (KB) = 1609692 + 0: The total amount of wall time = 313.616699 + 0: The maximum resident set size (KB) = 1611028 Test 046 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2383,14 +2383,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.823093 - 0: The maximum resident set size (KB) = 1628356 + 0: The total amount of wall time = 224.833340 + 0: The maximum resident set size (KB) = 1664544 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.280882 - 0: The maximum resident set size (KB) = 1609720 + 0: The total amount of wall time = 171.212125 + 0: The maximum resident set size (KB) = 1617444 Test 048 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.430613 - 0: The maximum resident set size (KB) = 1601776 + 0: The total amount of wall time = 192.442461 + 0: The maximum resident set size (KB) = 1620452 Test 049 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2509,28 +2509,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.972835 - 0: The maximum resident set size (KB) = 1090028 + 0: The total amount of wall time = 292.644009 + 0: The maximum resident set size (KB) = 1095180 Test 050 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.208017 - 0: The maximum resident set size (KB) = 1084228 + 0: The total amount of wall time = 151.046738 + 0: The maximum resident set size (KB) = 1082732 Test 051 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2541,28 +2541,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 289.504833 - 0: The maximum resident set size (KB) = 1092044 + 0: The total amount of wall time = 292.549338 + 0: The maximum resident set size (KB) = 1091564 Test 052 regional_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 149.849846 - 0: The maximum resident set size (KB) = 1083624 + 0: The total amount of wall time = 149.339477 + 0: The maximum resident set size (KB) = 1088256 Test 053 regional_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2573,14 +2573,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.173106 - 0: The maximum resident set size (KB) = 1081324 + 0: The total amount of wall time = 308.327797 + 0: The maximum resident set size (KB) = 1078964 Test 054 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2591,14 +2591,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 175.607219 - 0: The maximum resident set size (KB) = 1070664 + 0: The total amount of wall time = 175.224065 + 0: The maximum resident set size (KB) = 1072144 Test 055 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2606,28 +2606,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 288.565869 - 0: The maximum resident set size (KB) = 1356436 + 0: The total amount of wall time = 290.651024 + 0: The maximum resident set size (KB) = 1362844 Test 056 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 287.831717 - 0: The maximum resident set size (KB) = 1082924 + 0: The total amount of wall time = 286.515737 + 0: The maximum resident set size (KB) = 1087544 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.218752 - 0: The maximum resident set size (KB) = 1095284 + 0: The total amount of wall time = 292.554729 + 0: The maximum resident set size (KB) = 1098592 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2656,14 +2656,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.219172 - 0: The maximum resident set size (KB) = 913496 + 0: The total amount of wall time = 371.106463 + 0: The maximum resident set size (KB) = 922624 Test 059 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2710,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.172818 - 0: The maximum resident set size (KB) = 1236652 + 0: The total amount of wall time = 448.238236 + 0: The maximum resident set size (KB) = 1238644 Test 060 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 231.849259 - 0: The maximum resident set size (KB) = 1178972 + 0: The total amount of wall time = 241.080044 + 0: The maximum resident set size (KB) = 1158608 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2782,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.179216 - 0: The maximum resident set size (KB) = 1166704 + 0: The total amount of wall time = 469.226540 + 0: The maximum resident set size (KB) = 1157492 Test 062 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.926945 - 0: The maximum resident set size (KB) = 1325580 + 0: The total amount of wall time = 416.591179 + 0: The maximum resident set size (KB) = 1314424 Test 063 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.715651 - 0: The maximum resident set size (KB) = 1133716 + 0: The total amount of wall time = 227.839652 + 0: The maximum resident set size (KB) = 1137340 Test 064 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.428600 - 0: The maximum resident set size (KB) = 1231560 + 0: The total amount of wall time = 450.773174 + 0: The maximum resident set size (KB) = 1222772 Test 065 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.257323 - 0: The maximum resident set size (KB) = 1158992 + 0: The total amount of wall time = 473.326866 + 0: The maximum resident set size (KB) = 1166704 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.697774 - 0: The maximum resident set size (KB) = 1167144 + 0: The total amount of wall time = 333.633786 + 0: The maximum resident set size (KB) = 1167168 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3090,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.193719 - 0: The maximum resident set size (KB) = 1182400 + 0: The total amount of wall time = 228.226651 + 0: The maximum resident set size (KB) = 1156524 Test 068 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3144,14 +3144,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.379357 - 0: The maximum resident set size (KB) = 1079868 + 0: The total amount of wall time = 229.301994 + 0: The maximum resident set size (KB) = 1037900 Test 069 hrrr_control_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3198,14 +3198,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.616262 - 0: The maximum resident set size (KB) = 1112892 + 0: The total amount of wall time = 235.343504 + 0: The maximum resident set size (KB) = 1105028 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3252,42 +3252,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.906576 - 0: The maximum resident set size (KB) = 1125076 + 0: The total amount of wall time = 206.833430 + 0: The maximum resident set size (KB) = 1120796 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 320.543232 - 0: The maximum resident set size (KB) = 1108784 + 0: The total amount of wall time = 118.450299 + 0: The maximum resident set size (KB) = 1040672 Test 072 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 321.627080 - 0: The maximum resident set size (KB) = 1025456 + 0: The total amount of wall time = 122.093228 + 0: The maximum resident set size (KB) = 907720 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.224342 - 0: The maximum resident set size (KB) = 1195244 + 0: The total amount of wall time = 446.383635 + 0: The maximum resident set size (KB) = 1203444 Test 074 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 518.867169 - 0: The maximum resident set size (KB) = 807648 + 0: The total amount of wall time = 521.563265 + 0: The maximum resident set size (KB) = 804800 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,123 +3378,15 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.009959 - 0: The maximum resident set size (KB) = 908948 + 0: The total amount of wall time = 512.784457 + 0: The maximum resident set size (KB) = 907260 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_gf_intel -Checking test 077 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 447.849671 - 0: The maximum resident set size (KB) = 1224248 - -Test 077 hrrr_gf_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_c3_intel -Checking test 078 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.887878 - 0: The maximum resident set size (KB) = 1220668 - -Test 078 hrrr_c3_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_csawmg_intel +Checking test 077 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3504,15 +3396,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.849590 - 0: The maximum resident set size (KB) = 786968 + 0: The total amount of wall time = 343.541496 + 0: The maximum resident set size (KB) = 794960 -Test 079 control_csawmg_intel PASS +Test 077 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_csawmgt_intel +Checking test 078 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3522,15 +3414,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.092036 - 0: The maximum resident set size (KB) = 794860 + 0: The total amount of wall time = 338.135232 + 0: The maximum resident set size (KB) = 811784 -Test 080 control_csawmgt_intel PASS +Test 078 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_intel -Checking test 081 control_ras_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_ras_intel +Checking test 079 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3540,27 +3432,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.015077 - 0: The maximum resident set size (KB) = 813356 + 0: The total amount of wall time = 188.046331 + 0: The maximum resident set size (KB) = 814448 -Test 081 control_ras_intel PASS +Test 079 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_intel -Checking test 082 control_wam_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_wam_intel +Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.037421 - 0: The maximum resident set size (KB) = 702176 + 0: The total amount of wall time = 115.611751 + 0: The maximum resident set size (KB) = 693836 -Test 082 control_wam_intel PASS +Test 080 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_faster_intel +Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3606,15 +3498,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.363481 - 0: The maximum resident set size (KB) = 1607724 + 0: The total amount of wall time = 158.398823 + 0: The maximum resident set size (KB) = 1606164 -Test 083 control_p8_faster_intel PASS +Test 081 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_control_faster_intel +Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3624,15 +3516,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.913111 - 0: The maximum resident set size (KB) = 1096892 + 0: The total amount of wall time = 267.668818 + 0: The maximum resident set size (KB) = 1095868 -Test 084 regional_control_faster_intel PASS +Test 082 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_CubedSphereGrid_debug_intel +Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3658,348 +3550,376 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.530821 - 0: The maximum resident set size (KB) = 798556 + 0: The total amount of wall time = 150.001114 + 0: The maximum resident set size (KB) = 796272 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.136481 - 0: The maximum resident set size (KB) = 800612 + 0: The total amount of wall time = 147.792406 + 0: The maximum resident set size (KB) = 799668 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_stochy_debug_intel +Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.636073 - 0: The maximum resident set size (KB) = 797096 + 0: The total amount of wall time = 167.905794 + 0: The maximum resident set size (KB) = 804684 -Test 087 control_stochy_debug_intel PASS +Test 085 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_lndp_debug_intel +Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.238169 - 0: The maximum resident set size (KB) = 799088 + 0: The total amount of wall time = 147.366215 + 0: The maximum resident set size (KB) = 807056 -Test 088 control_lndp_debug_intel PASS +Test 086 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_csawmg_debug_intel +Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.362180 - 0: The maximum resident set size (KB) = 818652 + 0: The total amount of wall time = 231.305580 + 0: The maximum resident set size (KB) = 846820 -Test 089 control_csawmg_debug_intel PASS +Test 087 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_csawmgt_debug_intel +Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.928332 - 0: The maximum resident set size (KB) = 845856 + 0: The total amount of wall time = 228.360508 + 0: The maximum resident set size (KB) = 843116 -Test 090 control_csawmgt_debug_intel PASS +Test 088 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_ras_debug_intel +Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.958005 - 0: The maximum resident set size (KB) = 809536 + 0: The total amount of wall time = 152.530774 + 0: The maximum resident set size (KB) = 809404 -Test 091 control_ras_debug_intel PASS +Test 089 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_diag_debug_intel +Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.484884 - 0: The maximum resident set size (KB) = 850636 + 0: The total amount of wall time = 160.421683 + 0: The maximum resident set size (KB) = 852372 -Test 092 control_diag_debug_intel PASS +Test 090 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_debug_p8_intel +Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.333036 - 0: The maximum resident set size (KB) = 1624372 + 0: The total amount of wall time = 166.730776 + 0: The maximum resident set size (KB) = 1621044 -Test 093 control_debug_p8_intel PASS +Test 091 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_debug_intel +Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 991.678263 - 0: The maximum resident set size (KB) = 1099064 + 0: The total amount of wall time = 973.991652 + 0: The maximum resident set size (KB) = 1102000 -Test 094 regional_debug_intel PASS +Test 092 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_debug_intel +Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.894449 - 0: The maximum resident set size (KB) = 1182472 + 0: The total amount of wall time = 272.697253 + 0: The maximum resident set size (KB) = 1167044 -Test 095 rap_control_debug_intel PASS +Test 093 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_debug_intel +Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.393022 - 0: The maximum resident set size (KB) = 1176064 + 0: The total amount of wall time = 269.366115 + 0: The maximum resident set size (KB) = 1192148 + +Test 094 hrrr_control_debug_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_gf_debug_intel +Checking test 095 hrrr_gf_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 096 hrrr_control_debug_intel PASS + 0: The total amount of wall time = 274.925639 + 0: The maximum resident set size (KB) = 1181672 +Test 095 hrrr_gf_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_unified_drag_suite_debug_intel + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_c3_debug_intel +Checking test 096 hrrr_c3_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 273.142073 + 0: The maximum resident set size (KB) = 1185576 + +Test 096 hrrr_c3_debug_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.477104 - 0: The maximum resident set size (KB) = 1178936 + 0: The total amount of wall time = 271.086586 + 0: The maximum resident set size (KB) = 1176848 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.844008 - 0: The maximum resident set size (KB) = 1265740 + 0: The total amount of wall time = 291.672308 + 0: The maximum resident set size (KB) = 1273524 Test 098 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.875743 - 0: The maximum resident set size (KB) = 1187396 + 0: The total amount of wall time = 277.789173 + 0: The maximum resident set size (KB) = 1183508 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.956027 - 0: The maximum resident set size (KB) = 1178400 + 0: The total amount of wall time = 274.142551 + 0: The maximum resident set size (KB) = 1195480 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.633938 - 0: The maximum resident set size (KB) = 1178052 + 0: The total amount of wall time = 277.053812 + 0: The maximum resident set size (KB) = 1180500 Test 101 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.090632 - 0: The maximum resident set size (KB) = 1178120 + 0: The total amount of wall time = 268.710742 + 0: The maximum resident set size (KB) = 1183580 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.837438 - 0: The maximum resident set size (KB) = 1187524 + 0: The total amount of wall time = 263.021632 + 0: The maximum resident set size (KB) = 1182196 Test 103 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.606906 - 0: The maximum resident set size (KB) = 1184456 + 0: The total amount of wall time = 275.634036 + 0: The maximum resident set size (KB) = 1179544 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 447.504955 - 0: The maximum resident set size (KB) = 1175224 + 0: The total amount of wall time = 445.000410 + 0: The maximum resident set size (KB) = 1189284 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.444110 - 0: The maximum resident set size (KB) = 1188536 + 0: The total amount of wall time = 268.427700 + 0: The maximum resident set size (KB) = 1143184 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 331.189761 - 0: The maximum resident set size (KB) = 1181620 + 0: The total amount of wall time = 333.379609 + 0: The maximum resident set size (KB) = 1180124 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.948571 - 0: The maximum resident set size (KB) = 1180188 + 0: The total amount of wall time = 271.844290 + 0: The maximum resident set size (KB) = 1186784 Test 108 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.932319 - 0: The maximum resident set size (KB) = 589216 + 0: The total amount of wall time = 272.115322 + 0: The maximum resident set size (KB) = 596844 Test 109 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4010,14 +3930,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 219.586548 - 0: The maximum resident set size (KB) = 1106732 + 0: The total amount of wall time = 224.184860 + 0: The maximum resident set size (KB) = 1106892 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4064,14 +3984,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.050499 - 0: The maximum resident set size (KB) = 1099600 + 0: The total amount of wall time = 370.874703 + 0: The maximum resident set size (KB) = 1101564 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4038,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.574978 - 0: The maximum resident set size (KB) = 1030108 + 0: The total amount of wall time = 191.933796 + 0: The maximum resident set size (KB) = 1021348 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4092,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.434260 - 0: The maximum resident set size (KB) = 986720 + 0: The total amount of wall time = 192.092133 + 0: The maximum resident set size (KB) = 981700 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4146,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.438898 - 0: The maximum resident set size (KB) = 1101416 + 0: The total amount of wall time = 351.610024 + 0: The maximum resident set size (KB) = 1121008 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4200,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.745924 - 0: The maximum resident set size (KB) = 962872 + 0: The total amount of wall time = 175.476181 + 0: The maximum resident set size (KB) = 960992 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4254,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.647854 - 0: The maximum resident set size (KB) = 976048 + 0: The total amount of wall time = 200.012554 + 0: The maximum resident set size (KB) = 962096 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,42 +4300,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.736154 - 0: The maximum resident set size (KB) = 1054020 + 0: The total amount of wall time = 274.599274 + 0: The maximum resident set size (KB) = 1054812 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.949718 - 0: The maximum resident set size (KB) = 932696 + 0: The total amount of wall time = 98.940768 + 0: The maximum resident set size (KB) = 917956 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.195962 - 0: The maximum resident set size (KB) = 887284 + 0: The total amount of wall time = 101.525121 + 0: The maximum resident set size (KB) = 881412 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4431,40 +4351,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.819497 - 0: The maximum resident set size (KB) = 1252092 + 0: The total amount of wall time = 112.947618 + 0: The maximum resident set size (KB) = 1242836 Test 120 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.625841 - 0: The maximum resident set size (KB) = 1167512 + 0: The total amount of wall time = 44.496895 + 0: The maximum resident set size (KB) = 1167240 Test 121 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.601330 - 0: The maximum resident set size (KB) = 1179280 + 0: The total amount of wall time = 62.465965 + 0: The maximum resident set size (KB) = 1182916 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4511,124 +4431,152 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.622844 - 0: The maximum resident set size (KB) = 1096188 + 0: The total amount of wall time = 243.015230 + 0: The maximum resident set size (KB) = 1077176 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.771958 - 0: The maximum resident set size (KB) = 1057836 + 0: The total amount of wall time = 268.528471 + 0: The maximum resident set size (KB) = 1071060 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.398481 - 0: The maximum resident set size (KB) = 1067584 + 0: The total amount of wall time = 267.223509 + 0: The maximum resident set size (KB) = 1062168 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 846.244413 - 0: The maximum resident set size (KB) = 1249104 + 0: The total amount of wall time = 811.345657 + 0: The maximum resident set size (KB) = 1242656 Test 126 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_2threads_intel -Checking test 127 conus13km_debug_2threads_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_qr_intel +Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 476.721367 - 0: The maximum resident set size (KB) = 1177780 + 0: The total amount of wall time = 846.548801 + 0: The maximum resident set size (KB) = 926256 -Test 127 conus13km_debug_2threads_intel PASS +Test 127 conus13km_debug_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_radar_tten_debug_intel -Checking test 128 conus13km_radar_tten_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_2threads_intel +Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 827.686204 - 0: The maximum resident set size (KB) = 1302900 + 0: The total amount of wall time = 461.711623 + 0: The maximum resident set size (KB) = 1200588 -Test 128 conus13km_radar_tten_debug_intel PASS +Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_debug_intel -Checking test 129 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_radar_tten_debug_intel +Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.079703 - 0: The maximum resident set size (KB) = 1099364 + 0: The total amount of wall time = 817.466402 + 0: The maximum resident set size (KB) = 1338276 -Test 129 rap_control_dyn64_phy32_debug_intel PASS +Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_intel -Checking test 130 hafs_regional_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn64_phy32_debug_intel +Checking test 130 rap_control_dyn64_phy32_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 277.015515 + 0: The maximum resident set size (KB) = 1103300 + +Test 130 rap_control_dyn64_phy32_debug_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_atm_intel +Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 218.105060 - 0: The maximum resident set size (KB) = 1245408 + 0: The total amount of wall time = 216.913559 + 0: The maximum resident set size (KB) = 1237724 -Test 130 hafs_regional_atm_intel PASS +Test 131 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 344.919865 - 0: The maximum resident set size (KB) = 1568560 + 0: The total amount of wall time = 326.760296 + 0: The maximum resident set size (KB) = 1568020 -Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_ocn_intel -Checking test 132 hafs_regional_atm_ocn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_atm_ocn_intel +Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4636,15 +4584,15 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 370.256448 - 0: The maximum resident set size (KB) = 1403244 + 0: The total amount of wall time = 375.295748 + 0: The maximum resident set size (KB) = 1415492 -Test 132 hafs_regional_atm_ocn_intel PASS +Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_wav_intel -Checking test 133 hafs_regional_atm_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_atm_wav_intel +Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4652,15 +4600,15 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 744.148085 - 0: The maximum resident set size (KB) = 1444400 + 0: The total amount of wall time = 742.218227 + 0: The maximum resident set size (KB) = 1437696 -Test 133 hafs_regional_atm_wav_intel PASS +Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_atm_ocn_wav_intel -Checking test 134 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_atm_ocn_wav_intel +Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4670,15 +4618,15 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 848.180503 - 0: The maximum resident set size (KB) = 1460992 + 0: The total amount of wall time = 842.374013 + 0: The maximum resident set size (KB) = 1458632 -Test 134 hafs_regional_atm_ocn_wav_intel PASS +Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_1nest_atm_intel -Checking test 135 hafs_regional_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_1nest_atm_intel +Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4699,15 +4647,15 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 299.110221 - 0: The maximum resident set size (KB) = 651416 + 0: The total amount of wall time = 294.895880 + 0: The maximum resident set size (KB) = 658476 -Test 135 hafs_regional_1nest_atm_intel PASS +Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_1nest_atm_qr_intel -Checking test 136 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_1nest_atm_qr_intel +Checking test 137 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4728,15 +4676,15 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 317.830459 - 0: The maximum resident set size (KB) = 495928 + 0: The total amount of wall time = 310.985438 + 0: The maximum resident set size (KB) = 495932 -Test 136 hafs_regional_1nest_atm_qr_intel PASS +Test 137 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_telescopic_2nests_atm_intel +Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4744,15 +4692,15 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 344.247042 - 0: The maximum resident set size (KB) = 663860 + 0: The total amount of wall time = 338.249884 + 0: The maximum resident set size (KB) = 667568 -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS +Test 138 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_global_1nest_atm_intel +Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4798,15 +4746,15 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 137.560579 - 0: The maximum resident set size (KB) = 403956 + 0: The total amount of wall time = 137.984215 + 0: The maximum resident set size (KB) = 401724 -Test 138 hafs_global_1nest_atm_intel PASS +Test 139 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_1nest_atm_qr_intel -Checking test 139 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_global_1nest_atm_qr_intel +Checking test 140 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4852,15 +4800,15 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 142.153440 - 0: The maximum resident set size (KB) = 371888 + 0: The total amount of wall time = 146.380028 + 0: The maximum resident set size (KB) = 376196 -Test 139 hafs_global_1nest_atm_qr_intel PASS +Test 140 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_global_multiple_4nests_atm_intel +Checking test 141 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4941,15 +4889,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 382.627133 - 0: The maximum resident set size (KB) = 478852 + 0: The total amount of wall time = 380.984718 + 0: The maximum resident set size (KB) = 479744 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +Test 141 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_multiple_4nests_atm_qr_intel -Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_global_multiple_4nests_atm_qr_intel +Checking test 142 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5030,15 +4978,15 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 422.171472 - 0: The maximum resident set size (KB) = 472280 + 0: The total amount of wall time = 418.957747 + 0: The maximum resident set size (KB) = 479040 -Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 142 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_specified_moving_1nest_atm_intel -Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_specified_moving_1nest_atm_intel +Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5046,15 +4994,15 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 190.709779 - 0: The maximum resident set size (KB) = 665384 + 0: The total amount of wall time = 190.355065 + 0: The maximum resident set size (KB) = 671532 -Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_storm_following_1nest_atm_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5075,15 +5023,15 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 178.077369 - 0: The maximum resident set size (KB) = 671024 + 0: The total amount of wall time = 180.255667 + 0: The maximum resident set size (KB) = 674124 -Test 143 hafs_regional_storm_following_1nest_atm_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5104,15 +5052,15 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 196.171377 - 0: The maximum resident set size (KB) = 528532 + 0: The total amount of wall time = 193.966012 + 0: The maximum resident set size (KB) = 530976 -Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5120,43 +5068,43 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.548688 - 0: The maximum resident set size (KB) = 719096 + 0: The total amount of wall time = 219.114093 + 0: The maximum resident set size (KB) = 717036 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_global_storm_following_1nest_atm_intel -Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_global_storm_following_1nest_atm_intel +Checking test 147 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 54.589335 - 0: The maximum resident set size (KB) = 417748 + 0: The total amount of wall time = 55.616165 + 0: The maximum resident set size (KB) = 418620 -Test 146 hafs_global_storm_following_1nest_atm_intel PASS +Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 720.188962 - 0: The maximum resident set size (KB) = 727812 + 0: The total amount of wall time = 710.437339 + 0: The maximum resident set size (KB) = 732136 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5166,162 +5114,162 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 482.161102 - 0: The maximum resident set size (KB) = 806536 + 0: The total amount of wall time = 476.806013 + 0: The maximum resident set size (KB) = 802484 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_docn_intel -Checking test 149 hafs_regional_docn_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 331.596347 - 0: The maximum resident set size (KB) = 1406012 + 0: The total amount of wall time = 335.440493 + 0: The maximum resident set size (KB) = 1408496 -Test 149 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_docn_oisst_intel -Checking test 150 hafs_regional_docn_oisst_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 338.361715 - 0: The maximum resident set size (KB) = 1391140 + 0: The total amount of wall time = 337.571765 + 0: The maximum resident set size (KB) = 1391520 -Test 150 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hafs_regional_datm_cdeps_intel -Checking test 151 hafs_regional_datm_cdeps_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 983.468570 - 0: The maximum resident set size (KB) = 1128868 + 0: The total amount of wall time = 967.578226 + 0: The maximum resident set size (KB) = 1149944 -Test 151 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_intel -Checking test 152 datm_cdeps_control_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.195762 - 0: The maximum resident set size (KB) = 1107376 + 0: The total amount of wall time = 156.539707 + 0: The maximum resident set size (KB) = 1111004 -Test 152 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_restart_cfsr_intel -Checking test 153 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.205131 - 0: The maximum resident set size (KB) = 1056152 + 0: The total amount of wall time = 92.411382 + 0: The maximum resident set size (KB) = 1073128 -Test 153 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_gefs_intel -Checking test 154 datm_cdeps_control_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.951124 - 0: The maximum resident set size (KB) = 997092 + 0: The total amount of wall time = 151.143122 + 0: The maximum resident set size (KB) = 1003212 -Test 154 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_iau_gefs_intel -Checking test 155 datm_cdeps_iau_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.343635 - 0: The maximum resident set size (KB) = 999524 + 0: The total amount of wall time = 151.633796 + 0: The maximum resident set size (KB) = 1002544 -Test 155 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_stochy_gefs_intel -Checking test 156 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.782529 - 0: The maximum resident set size (KB) = 997748 + 0: The total amount of wall time = 155.012794 + 0: The maximum resident set size (KB) = 987008 -Test 156 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_ciceC_cfsr_intel -Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.123687 - 0: The maximum resident set size (KB) = 1107256 + 0: The total amount of wall time = 162.500207 + 0: The maximum resident set size (KB) = 1101072 -Test 157 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_bulk_cfsr_intel -Checking test 158 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.650591 - 0: The maximum resident set size (KB) = 1110620 + 0: The total amount of wall time = 156.366248 + 0: The maximum resident set size (KB) = 1119268 -Test 158 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_bulk_gefs_intel -Checking test 159 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.798714 - 0: The maximum resident set size (KB) = 984660 + 0: The total amount of wall time = 147.771986 + 0: The maximum resident set size (KB) = 995020 -Test 159 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_mx025_cfsr_intel -Checking test 160 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5329,15 +5277,15 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.299256 - 0: The maximum resident set size (KB) = 1034692 + 0: The total amount of wall time = 426.736820 + 0: The maximum resident set size (KB) = 1036160 -Test 160 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_mx025_gefs_intel -Checking test 161 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5345,78 +5293,78 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 447.387295 - 0: The maximum resident set size (KB) = 1021448 + 0: The total amount of wall time = 450.490438 + 0: The maximum resident set size (KB) = 1015248 -Test 161 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_multiple_files_cfsr_intel -Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.585531 - 0: The maximum resident set size (KB) = 1118404 + 0: The total amount of wall time = 157.570123 + 0: The maximum resident set size (KB) = 1097344 -Test 162 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_3072x1536_cfsr_intel -Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 232.071089 - 0: The maximum resident set size (KB) = 2453576 + 0: The total amount of wall time = 228.845601 + 0: The maximum resident set size (KB) = 2401392 -Test 163 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_gfs_intel -Checking test 164 datm_cdeps_gfs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 229.065960 - 0: The maximum resident set size (KB) = 2457916 + 0: The total amount of wall time = 229.701854 + 0: The maximum resident set size (KB) = 2416420 -Test 164 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_debug_cfsr_intel -Checking test 165 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 348.674934 - 0: The maximum resident set size (KB) = 1037596 + 0: The total amount of wall time = 351.892943 + 0: The maximum resident set size (KB) = 1035848 -Test 165 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_faster_intel -Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.579458 - 0: The maximum resident set size (KB) = 1120324 + 0: The total amount of wall time = 156.077774 + 0: The maximum resident set size (KB) = 1115776 -Test 166 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_lnd_gswp3_intel -Checking test 167 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5424,15 +5372,15 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.016223 - 0: The maximum resident set size (KB) = 255176 + 0: The total amount of wall time = 6.041578 + 0: The maximum resident set size (KB) = 251512 -Test 167 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_lnd_gswp3_rst_intel -Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_lnd_gswp3_rst_intel +Checking test 169 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5440,15 +5388,15 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.581936 - 0: The maximum resident set size (KB) = 247892 + 0: The total amount of wall time = 10.677516 + 0: The maximum resident set size (KB) = 252488 -Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 169 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_atmlnd_sbs_intel +Checking test 170 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5532,15 +5480,15 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 204.837308 - 0: The maximum resident set size (KB) = 1615956 + 0: The total amount of wall time = 205.686927 + 0: The maximum resident set size (KB) = 1619332 -Test 169 control_p8_atmlnd_sbs_intel PASS +Test 170 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmwav_control_noaero_p8_intel -Checking test 170 atmwav_control_noaero_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/atmwav_control_noaero_p8_intel +Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5582,15 +5530,15 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 97.727169 - 0: The maximum resident set size (KB) = 1642796 + 0: The total amount of wall time = 95.250365 + 0: The maximum resident set size (KB) = 1632084 -Test 170 atmwav_control_noaero_p8_intel PASS +Test 171 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_atmwav_intel -Checking test 171 control_atmwav_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_atmwav_intel +Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5633,15 +5581,15 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.498559 - 0: The maximum resident set size (KB) = 663196 + 0: The total amount of wall time = 88.300085 + 0: The maximum resident set size (KB) = 657396 -Test 171 control_atmwav_intel PASS +Test 172 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_intel -Checking test 172 atmaero_control_p8_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/atmaero_control_p8_intel +Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5684,15 +5632,15 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.917640 - 0: The maximum resident set size (KB) = 2994712 + 0: The total amount of wall time = 235.531454 + 0: The maximum resident set size (KB) = 2991660 -Test 172 atmaero_control_p8_intel PASS +Test 173 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_rad_intel -Checking test 173 atmaero_control_p8_rad_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/atmaero_control_p8_rad_intel +Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5735,15 +5683,15 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.175518 - 0: The maximum resident set size (KB) = 3065176 + 0: The total amount of wall time = 284.087003 + 0: The maximum resident set size (KB) = 3067224 -Test 173 atmaero_control_p8_rad_intel PASS +Test 174 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/atmaero_control_p8_rad_micro_intel -Checking test 174 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/atmaero_control_p8_rad_micro_intel +Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5786,15 +5734,15 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.600404 - 0: The maximum resident set size (KB) = 3072852 + 0: The total amount of wall time = 295.781768 + 0: The maximum resident set size (KB) = 3045180 -Test 174 atmaero_control_p8_rad_micro_intel PASS +Test 175 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_intel -Checking test 175 regional_atmaq_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_atmaq_intel +Checking test 176 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5809,15 +5757,15 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 647.879531 - 0: The maximum resident set size (KB) = 5401476 + 0: The total amount of wall time = 635.374690 + 0: The maximum resident set size (KB) = 5435220 -Test 175 regional_atmaq_intel PASS +Test 176 regional_atmaq_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_atmaq_debug_intel +Checking test 177 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5830,15 +5778,15 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1203.219780 - 0: The maximum resident set size (KB) = 4890468 + 0: The total amount of wall time = 1193.480049 + 0: The maximum resident set size (KB) = 4834828 -Test 176 regional_atmaq_debug_intel PASS +Test 177 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_atmaq_faster_intel -Checking test 177 regional_atmaq_faster_intel results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_atmaq_faster_intel +Checking test 178 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5853,15 +5801,15 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 555.547526 - 0: The maximum resident set size (KB) = 5376388 + 0: The total amount of wall time = 553.455049 + 0: The maximum resident set size (KB) = 5434028 -Test 177 regional_atmaq_faster_intel PASS +Test 178 regional_atmaq_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_c48_gnu -Checking test 178 control_c48_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_c48_gnu +Checking test 179 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5899,15 +5847,15 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.237828 -0: The maximum resident set size (KB) = 731844 +0: The total amount of wall time = 683.585426 +0: The maximum resident set size (KB) = 729780 -Test 178 control_c48_gnu PASS +Test 179 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_gnu -Checking test 179 control_stochy_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_stochy_gnu +Checking test 180 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5917,15 +5865,15 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 241.660578 - 0: The maximum resident set size (KB) = 535672 + 0: The total amount of wall time = 230.524244 + 0: The maximum resident set size (KB) = 536948 -Test 179 control_stochy_gnu PASS +Test 180 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_gnu -Checking test 180 control_ras_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_ras_gnu +Checking test 181 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5935,15 +5883,15 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.287551 - 0: The maximum resident set size (KB) = 544604 + 0: The total amount of wall time = 284.669965 + 0: The maximum resident set size (KB) = 545080 -Test 180 control_ras_gnu PASS +Test 181 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_p8_gnu -Checking test 181 control_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_p8_gnu +Checking test 182 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5989,15 +5937,15 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.739450 - 0: The maximum resident set size (KB) = 1292796 + 0: The total amount of wall time = 293.099927 + 0: The maximum resident set size (KB) = 1290128 -Test 181 control_p8_gnu PASS +Test 182 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_flake_gnu -Checking test 182 control_flake_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_flake_gnu +Checking test 183 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6007,15 +5955,15 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.131779 - 0: The maximum resident set size (KB) = 580252 + 0: The total amount of wall time = 339.724661 + 0: The maximum resident set size (KB) = 583948 -Test 182 control_flake_gnu PASS +Test 183 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_gnu -Checking test 183 rap_control_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_gnu +Checking test 184 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6061,15 +6009,15 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.224853 - 0: The maximum resident set size (KB) = 845084 + 0: The total amount of wall time = 674.819505 + 0: The maximum resident set size (KB) = 852024 -Test 183 rap_control_gnu PASS +Test 184 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_decomp_gnu -Checking test 184 rap_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_decomp_gnu +Checking test 185 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6115,15 +6063,15 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 691.136567 - 0: The maximum resident set size (KB) = 844220 + 0: The total amount of wall time = 697.266605 + 0: The maximum resident set size (KB) = 849720 -Test 184 rap_decomp_gnu PASS +Test 185 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_gnu -Checking test 185 rap_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_2threads_gnu +Checking test 186 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6169,15 +6117,15 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.263520 - 0: The maximum resident set size (KB) = 950292 + 0: The total amount of wall time = 608.373783 + 0: The maximum resident set size (KB) = 960640 -Test 185 rap_2threads_gnu PASS +Test 186 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_gnu -Checking test 186 rap_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_restart_gnu +Checking test 187 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6215,15 +6163,15 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.555188 - 0: The maximum resident set size (KB) = 754776 + 0: The total amount of wall time = 344.895455 + 0: The maximum resident set size (KB) = 758524 -Test 186 rap_restart_gnu PASS +Test 187 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_gnu -Checking test 187 rap_sfcdiff_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_gnu +Checking test 188 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6269,15 +6217,15 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.581895 - 0: The maximum resident set size (KB) = 846492 + 0: The total amount of wall time = 705.175159 + 0: The maximum resident set size (KB) = 849068 -Test 187 rap_sfcdiff_gnu PASS +Test 188 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_decomp_gnu -Checking test 188 rap_sfcdiff_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_decomp_gnu +Checking test 189 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6323,15 +6271,15 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 684.651056 - 0: The maximum resident set size (KB) = 844724 + 0: The total amount of wall time = 690.487804 + 0: The maximum resident set size (KB) = 851708 -Test 188 rap_sfcdiff_decomp_gnu PASS +Test 189 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_sfcdiff_restart_gnu -Checking test 189 rap_sfcdiff_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_sfcdiff_restart_gnu +Checking test 190 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6369,15 +6317,15 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 504.226221 - 0: The maximum resident set size (KB) = 750416 + 0: The total amount of wall time = 509.668052 + 0: The maximum resident set size (KB) = 753840 -Test 189 rap_sfcdiff_restart_gnu PASS +Test 190 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_gnu -Checking test 190 hrrr_control_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_gnu +Checking test 191 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6423,15 +6371,15 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.257479 - 0: The maximum resident set size (KB) = 843340 + 0: The total amount of wall time = 344.188946 + 0: The maximum resident set size (KB) = 848840 -Test 190 hrrr_control_gnu PASS +Test 191 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_gnu -Checking test 191 hrrr_control_qr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_qr_gnu +Checking test 192 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6477,15 +6425,15 @@ Checking test 191 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 659.377005 - 0: The maximum resident set size (KB) = 853924 + 0: The total amount of wall time = 342.735603 + 0: The maximum resident set size (KB) = 860384 -Test 191 hrrr_control_qr_gnu PASS +Test 192 hrrr_control_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_gnu -Checking test 192 hrrr_control_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_2threads_gnu +Checking test 193 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6531,15 +6479,15 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 576.972066 - 0: The maximum resident set size (KB) = 954072 + 0: The total amount of wall time = 300.890031 + 0: The maximum resident set size (KB) = 956292 -Test 192 hrrr_control_2threads_gnu PASS +Test 193 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_gnu -Checking test 193 hrrr_control_decomp_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_decomp_gnu +Checking test 194 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6585,43 +6533,43 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 653.908570 - 0: The maximum resident set size (KB) = 844460 + 0: The total amount of wall time = 342.599487 + 0: The maximum resident set size (KB) = 848064 -Test 193 hrrr_control_decomp_gnu PASS +Test 194 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_gnu -Checking test 194 hrrr_control_restart_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_gnu +Checking test 195 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 488.023305 - 0: The maximum resident set size (KB) = 707336 + 0: The total amount of wall time = 180.040034 + 0: The maximum resident set size (KB) = 705760 -Test 194 hrrr_control_restart_gnu PASS +Test 195 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_gnu -Checking test 195 hrrr_control_restart_qr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_qr_gnu +Checking test 196 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 493.647288 - 0: The maximum resident set size (KB) = 614008 + 0: The total amount of wall time = 182.021588 + 0: The maximum resident set size (KB) = 611748 -Test 195 hrrr_control_restart_qr_gnu PASS +Test 196 hrrr_control_restart_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_gnu -Checking test 196 rrfs_v1beta_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1beta_gnu +Checking test 197 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6667,263 +6615,237 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 682.197102 - 0: The maximum resident set size (KB) = 842352 + 0: The total amount of wall time = 674.903062 + 0: The maximum resident set size (KB) = 848860 -Test 196 rrfs_v1beta_gnu PASS +Test 197 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_gf_gnu -Checking test 197 hrrr_gf_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 684.641801 - 0: The maximum resident set size (KB) = 846796 - -Test 197 hrrr_gf_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_diag_debug_gnu Checking test 198 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 83.956154 - 0: The maximum resident set size (KB) = 546160 + 0: The total amount of wall time = 82.659089 + 0: The maximum resident set size (KB) = 546636 Test 198 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/regional_debug_gnu Checking test 199 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 437.509727 - 0: The maximum resident set size (KB) = 818960 + 0: The total amount of wall time = 446.605378 + 0: The maximum resident set size (KB) = 820736 Test 199 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_debug_gnu Checking test 200 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.883227 - 0: The maximum resident set size (KB) = 892856 + 0: The total amount of wall time = 137.508770 + 0: The maximum resident set size (KB) = 857524 Test 200 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_debug_gnu Checking test 201 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.313096 - 0: The maximum resident set size (KB) = 853340 + 0: The total amount of wall time = 133.301927 + 0: The maximum resident set size (KB) = 856272 Test 201 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_diag_debug_gnu -Checking test 202 rap_diag_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_gf_debug_gnu +Checking test 202 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.835533 - 0: The maximum resident set size (KB) = 939232 + 0: The total amount of wall time = 134.998453 + 0: The maximum resident set size (KB) = 857440 -Test 202 rap_diag_debug_gnu PASS +Test 202 hrrr_gf_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_c3_debug_gnu +Checking test 203 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.193998 - 0: The maximum resident set size (KB) = 861056 + 0: The total amount of wall time = 137.038986 + 0: The maximum resident set size (KB) = 859580 -Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 203 hrrr_c3_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_progcld_thompson_debug_gnu -Checking test 204 rap_progcld_thompson_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_diag_debug_gnu +Checking test 204 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.973118 - 0: The maximum resident set size (KB) = 859124 + 0: The total amount of wall time = 149.050964 + 0: The maximum resident set size (KB) = 944512 -Test 204 rap_progcld_thompson_debug_gnu PASS +Test 204 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rrfs_v1beta_debug_gnu -Checking test 205 rrfs_v1beta_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.040617 - 0: The maximum resident set size (KB) = 854180 + 0: The total amount of wall time = 216.226674 + 0: The maximum resident set size (KB) = 857144 -Test 205 rrfs_v1beta_debug_gnu PASS +Test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_ras_debug_gnu -Checking test 206 control_ras_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_progcld_thompson_debug_gnu +Checking test 206 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 81.106157 - 0: The maximum resident set size (KB) = 533944 + 0: The total amount of wall time = 139.043697 + 0: The maximum resident set size (KB) = 854560 -Test 206 control_ras_debug_gnu PASS +Test 206 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_stochy_debug_gnu -Checking test 207 control_stochy_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rrfs_v1beta_debug_gnu +Checking test 207 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.203439 - 0: The maximum resident set size (KB) = 493668 + 0: The total amount of wall time = 140.051724 + 0: The maximum resident set size (KB) = 854980 -Test 207 control_stochy_debug_gnu PASS +Test 207 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_debug_p8_gnu -Checking test 208 control_debug_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_ras_debug_gnu +Checking test 208 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.152884 - 0: The maximum resident set size (KB) = 1279776 + 0: The total amount of wall time = 80.910005 + 0: The maximum resident set size (KB) = 532188 -Test 208 control_debug_p8_gnu PASS +Test 208 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_flake_debug_gnu -Checking test 209 rap_flake_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_stochy_debug_gnu +Checking test 209 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.171072 - 0: The maximum resident set size (KB) = 856212 + 0: The total amount of wall time = 123.850047 + 0: The maximum resident set size (KB) = 490652 -Test 209 rap_flake_debug_gnu PASS +Test 209 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_clm_lake_debug_gnu -Checking test 210 rap_clm_lake_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_debug_p8_gnu +Checking test 210 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.628493 - 0: The maximum resident set size (KB) = 861184 + 0: The total amount of wall time = 87.982162 + 0: The maximum resident set size (KB) = 1282056 + +Test 210 control_debug_p8_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_flake_debug_gnu +Checking test 211 rap_flake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 210 rap_clm_lake_debug_gnu PASS + 0: The total amount of wall time = 136.646762 + 0: The maximum resident set size (KB) = 861828 +Test 211 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/control_wam_debug_gnu -Checking test 211 control_wam_debug_gnu results .... + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_clm_lake_debug_gnu +Checking test 212 rap_clm_lake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 155.791944 + 0: The maximum resident set size (KB) = 858740 + +Test 212 rap_clm_lake_debug_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/control_wam_debug_gnu +Checking test 213 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 137.499979 - 0: The maximum resident set size (KB) = 282340 + 0: The total amount of wall time = 137.467265 + 0: The maximum resident set size (KB) = 286948 -Test 211 control_wam_debug_gnu PASS +Test 213 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn32_phy32_gnu -Checking test 212 rap_control_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn32_phy32_gnu +Checking test 214 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6969,15 +6891,15 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.652677 - 0: The maximum resident set size (KB) = 741876 + 0: The total amount of wall time = 697.210331 + 0: The maximum resident set size (KB) = 739392 -Test 212 rap_control_dyn32_phy32_gnu PASS +Test 214 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_dyn32_phy32_gnu -Checking test 213 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_dyn32_phy32_gnu +Checking test 215 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7023,15 +6945,15 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.267022 - 0: The maximum resident set size (KB) = 740648 + 0: The total amount of wall time = 351.737531 + 0: The maximum resident set size (KB) = 740380 -Test 213 hrrr_control_dyn32_phy32_gnu PASS +Test 215 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_qr_dyn32_phy32_gnu -Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_qr_dyn32_phy32_gnu +Checking test 216 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7077,15 +6999,15 @@ Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 352.277411 - 0: The maximum resident set size (KB) = 749052 + 0: The total amount of wall time = 351.955263 + 0: The maximum resident set size (KB) = 747576 -Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 216 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_2threads_dyn32_phy32_gnu +Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7131,15 +7053,15 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.665116 - 0: The maximum resident set size (KB) = 792596 + 0: The total amount of wall time = 618.940012 + 0: The maximum resident set size (KB) = 791144 -Test 215 rap_2threads_dyn32_phy32_gnu PASS +Test 217 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7185,15 +7107,15 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.759257 - 0: The maximum resident set size (KB) = 787796 + 0: The total amount of wall time = 310.776411 + 0: The maximum resident set size (KB) = 793156 -Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7239,15 +7161,15 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.398678 - 0: The maximum resident set size (KB) = 740060 + 0: The total amount of wall time = 349.107647 + 0: The maximum resident set size (KB) = 739672 -Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_restart_dyn32_phy32_gnu +Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7285,43 +7207,43 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 524.914647 - 0: The maximum resident set size (KB) = 651432 + 0: The total amount of wall time = 524.135966 + 0: The maximum resident set size (KB) = 651844 -Test 218 rap_restart_dyn32_phy32_gnu PASS +Test 220 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_dyn32_phy32_gnu +Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.020700 - 0: The maximum resident set size (KB) = 615816 + 0: The total amount of wall time = 184.245319 + 0: The maximum resident set size (KB) = 614648 -Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 222 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 185.335820 - 0: The maximum resident set size (KB) = 579668 + 0: The total amount of wall time = 183.091858 + 0: The maximum resident set size (KB) = 575936 -Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 222 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_control_gnu -Checking test 221 conus13km_control_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_control_gnu +Checking test 223 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7336,41 +7258,41 @@ Checking test 221 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 241.969550 - 0: The maximum resident set size (KB) = 951212 + 0: The total amount of wall time = 237.139995 + 0: The maximum resident set size (KB) = 952060 -Test 221 conus13km_control_gnu PASS +Test 223 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_2threads_gnu -Checking test 222 conus13km_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_2threads_gnu +Checking test 224 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.197613 - 0: The maximum resident set size (KB) = 989876 + 0: The total amount of wall time = 102.687229 + 0: The maximum resident set size (KB) = 997176 -Test 222 conus13km_2threads_gnu PASS +Test 224 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_restart_mismatch_gnu -Checking test 223 conus13km_restart_mismatch_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_restart_mismatch_gnu +Checking test 225 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.614333 - 0: The maximum resident set size (KB) = 605856 + 0: The total amount of wall time = 127.657829 + 0: The maximum resident set size (KB) = 605692 -Test 223 conus13km_restart_mismatch_gnu PASS +Test 225 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_gnu -Checking test 224 rap_control_dyn64_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn64_phy32_gnu +Checking test 226 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7416,99 +7338,127 @@ Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.167453 - 0: The maximum resident set size (KB) = 779604 + 0: The total amount of wall time = 408.536040 + 0: The maximum resident set size (KB) = 771924 + +Test 226 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_debug_dyn32_phy32_gnu +Checking test 227 rap_control_debug_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 137.535773 + 0: The maximum resident set size (KB) = 752700 -Test 224 rap_control_dyn64_phy32_gnu PASS +Test 227 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_debug_dyn32_phy32_gnu -Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/hrrr_control_debug_dyn32_phy32_gnu +Checking test 228 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.167894 - 0: The maximum resident set size (KB) = 753832 + 0: The total amount of wall time = 136.450345 + 0: The maximum resident set size (KB) = 748952 -Test 225 rap_control_debug_dyn32_phy32_gnu PASS +Test 228 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/hrrr_control_debug_dyn32_phy32_gnu -Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_gnu +Checking test 229 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 136.552873 - 0: The maximum resident set size (KB) = 750240 + 0: The total amount of wall time = 417.536229 + 0: The maximum resident set size (KB) = 965796 -Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 229 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_gnu -Checking test 227 conus13km_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_qr_gnu +Checking test 230 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 416.000602 - 0: The maximum resident set size (KB) = 965556 + 0: The total amount of wall time = 420.357007 + 0: The maximum resident set size (KB) = 631004 -Test 227 conus13km_debug_gnu PASS +Test 230 conus13km_debug_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_debug_2threads_gnu +Checking test 231 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.110782 - 0: The maximum resident set size (KB) = 1011764 + 0: The total amount of wall time = 253.624559 + 0: The maximum resident set size (KB) = 1009552 -Test 228 conus13km_debug_2threads_gnu PASS +Test 231 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/conus13km_radar_tten_debug_gnu +Checking test 232 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.884535 - 0: The maximum resident set size (KB) = 1033464 + 0: The total amount of wall time = 417.021880 + 0: The maximum resident set size (KB) = 1026876 -Test 229 conus13km_radar_tten_debug_gnu PASS +Test 232 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/rap_control_dyn64_phy32_debug_gnu +Checking test 233 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.396740 - 0: The maximum resident set size (KB) = 777544 + 0: The total amount of wall time = 139.986580 + 0: The maximum resident set size (KB) = 778424 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 233 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_p8_gnu -Checking test 231 cpld_control_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_p8_gnu +Checking test 234 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7572,15 +7522,15 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 640.742062 - 0: The maximum resident set size (KB) = 1507120 + 0: The total amount of wall time = 643.056808 + 0: The maximum resident set size (KB) = 1507672 -Test 231 cpld_control_p8_gnu PASS +Test 234 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_nowave_noaero_p8_gnu -Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_nowave_noaero_p8_gnu +Checking test 235 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7641,15 +7591,15 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 406.126607 - 0: The maximum resident set size (KB) = 1401516 + 0: The total amount of wall time = 417.173961 + 0: The maximum resident set size (KB) = 1401376 -Test 232 cpld_control_nowave_noaero_p8_gnu PASS +Test 235 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_p8_gnu -Checking test 233 cpld_debug_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_debug_p8_gnu +Checking test 236 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7701,15 +7651,15 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.171815 - 0: The maximum resident set size (KB) = 1513840 + 0: The total amount of wall time = 363.091848 + 0: The maximum resident set size (KB) = 1493756 -Test 233 cpld_debug_p8_gnu PASS +Test 236 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_control_pdlib_p8_gnu -Checking test 234 cpld_control_pdlib_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_control_pdlib_p8_gnu +Checking test 237 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7772,15 +7722,15 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1429.978746 - 0: The maximum resident set size (KB) = 1377116 + 0: The total amount of wall time = 1416.726866 + 0: The maximum resident set size (KB) = 1378652 -Test 234 cpld_control_pdlib_p8_gnu PASS +Test 237 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/cpld_debug_pdlib_p8_gnu -Checking test 235 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/cpld_debug_pdlib_p8_gnu +Checking test 238 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7831,25 +7781,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 718.873228 - 0: The maximum resident set size (KB) = 1385708 + 0: The total amount of wall time = 725.510822 + 0: The maximum resident set size (KB) = 1377900 -Test 235 cpld_debug_pdlib_p8_gnu PASS +Test 238 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_31909/datm_cdeps_control_cfsr_gnu -Checking test 236 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_263882/datm_cdeps_control_cfsr_gnu +Checking test 239 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 179.737169 - 0: The maximum resident set size (KB) = 684068 + 0: The total amount of wall time = 168.238588 + 0: The maximum resident set size (KB) = 684968 -Test 236 datm_cdeps_control_cfsr_gnu PASS +Test 239 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 28 07:31:36 UTC 2023 -Elapsed time: 01h:44m:15s. Have a nice day! +Mon Oct 2 14:28:07 UTC 2023 +Elapsed time: 01h:40m:50s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index a4005179ac..b51b1ad8ba 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,72 +1,72 @@ -Thu Sep 28 08:02:39 AM CDT 2023 +Mon Oct 2 16:18:49 CDT 2023 Start Regression test -Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 +Testing UFSWM Hash: 42dfe840256d92314818aaff6d27f46c8a91d1db Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atmaero_intel elapsed time 376 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 149 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 563 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 191 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 157 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 508 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 160 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 248 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 228 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 143 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 490 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 161 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 247 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_gnu elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 392 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 569 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 175 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 366 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 356 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 378 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 550 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 593 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 170 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_gnu elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 176 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 606 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 184 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 626 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 518 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 420 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 198 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 709 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 118 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 331 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 790 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 245 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 697 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 310 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 116 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 214 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 346 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_mixedmode_intel +Compile datm_cdeps_intel elapsed time 155 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 46 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 167 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 595 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 500 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 348 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 516 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 206 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 109 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 226 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 631 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 130 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 733 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 251 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 89 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -131,14 +131,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.591438 - 0: The maximum resident set size (KB) = 1887468 + 0: The total amount of wall time = 443.204566 + 0: The maximum resident set size (KB) = 1905152 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 494.222393 - 0: The maximum resident set size (KB) = 1724972 + 0: The total amount of wall time = 477.669532 + 0: The maximum resident set size (KB) = 1726356 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -274,14 +274,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 433.181856 - 0: The maximum resident set size (KB) = 2053120 + 0: The total amount of wall time = 436.115398 + 0: The maximum resident set size (KB) = 2044576 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -334,14 +334,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.178090 - 0: The maximum resident set size (KB) = 1922820 + 0: The total amount of wall time = 240.695208 + 0: The maximum resident set size (KB) = 1922128 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -406,14 +406,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.398624 - 0: The maximum resident set size (KB) = 1965456 + 0: The total amount of wall time = 435.723536 + 0: The maximum resident set size (KB) = 1975368 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,14 +466,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.947159 - 0: The maximum resident set size (KB) = 1556888 + 0: The total amount of wall time = 242.682928 + 0: The maximum resident set size (KB) = 1562864 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -526,14 +526,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 519.427599 - 0: The maximum resident set size (KB) = 2483432 + 0: The total amount of wall time = 512.685469 + 0: The maximum resident set size (KB) = 2462940 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -586,14 +586,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 450.018421 - 0: The maximum resident set size (KB) = 2037284 + 0: The total amount of wall time = 425.682478 + 0: The maximum resident set size (KB) = 2042688 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -646,14 +646,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.404023 - 0: The maximum resident set size (KB) = 1862668 + 0: The total amount of wall time = 372.254436 + 0: The maximum resident set size (KB) = 1866892 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.365880 - 0: The maximum resident set size (KB) = 2050124 + 0: The total amount of wall time = 433.094131 + 0: The maximum resident set size (KB) = 2037428 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -778,14 +778,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 907.091170 - 0: The maximum resident set size (KB) = 2795088 + 0: The total amount of wall time = 901.420748 + 0: The maximum resident set size (KB) = 2798320 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -838,14 +838,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 357.013144 - 0: The maximum resident set size (KB) = 2813812 + 0: The total amount of wall time = 341.616825 + 0: The maximum resident set size (KB) = 2823728 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -893,14 +893,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 544.683743 - 0: The maximum resident set size (KB) = 3607468 + 0: The total amount of wall time = 540.775647 + 0: The maximum resident set size (KB) = 3614200 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 430.759625 - 0: The maximum resident set size (KB) = 3514172 + 0: The total amount of wall time = 402.083419 + 0: The maximum resident set size (KB) = 3523348 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1019,14 +1019,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 413.493762 - 0: The maximum resident set size (KB) = 1791416 + 0: The total amount of wall time = 397.517451 + 0: The maximum resident set size (KB) = 1775600 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1088,14 +1088,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 237.379540 - 0: The maximum resident set size (KB) = 1818820 + 0: The total amount of wall time = 235.138718 + 0: The maximum resident set size (KB) = 1816292 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1148,14 +1148,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.909636 - 0: The maximum resident set size (KB) = 2046284 + 0: The total amount of wall time = 439.326124 + 0: The maximum resident set size (KB) = 2032708 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.453308 - 0: The maximum resident set size (KB) = 1809596 + 0: The total amount of wall time = 319.129671 + 0: The maximum resident set size (KB) = 1793580 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1276,14 +1276,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 245.630067 - 0: The maximum resident set size (KB) = 1830812 + 0: The total amount of wall time = 239.375892 + 0: The maximum resident set size (KB) = 1824480 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1333,14 +1333,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 446.490217 - 0: The maximum resident set size (KB) = 2827044 + 0: The total amount of wall time = 450.717999 + 0: The maximum resident set size (KB) = 2825620 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1405,14 +1405,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.225329 - 0: The maximum resident set size (KB) = 2064752 + 0: The total amount of wall time = 412.295574 + 0: The maximum resident set size (KB) = 2032908 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.741441 - 0: The maximum resident set size (KB) = 778252 + 0: The total amount of wall time = 165.674711 + 0: The maximum resident set size (KB) = 778380 Test 022 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1457,36 +1457,36 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 113.130471 - 0: The maximum resident set size (KB) = 673676 + 0: The total amount of wall time = 114.617867 + 0: The maximum resident set size (KB) = 682044 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1187.136467 - 0: The maximum resident set size (KB) = 688468 + 0: The total amount of wall time = 127.416777 + 0: The maximum resident set size (KB) = 692772 Test 024 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.417351 - 0: The maximum resident set size (KB) = 673932 + 0: The total amount of wall time = 116.488382 + 0: The maximum resident set size (KB) = 670896 Test 025 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1515,14 +1515,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.197018 - 0: The maximum resident set size (KB) = 681780 + 0: The total amount of wall time = 118.605326 + 0: The maximum resident set size (KB) = 677936 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 334.796061 -0: The maximum resident set size (KB) = 813068 +0: The total amount of wall time = 337.777159 +0: The maximum resident set size (KB) = 818776 Test 027 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 448.435301 - 0: The maximum resident set size (KB) = 923364 + 0: The total amount of wall time = 452.035935 + 0: The maximum resident set size (KB) = 904616 Test 028 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1597,14 +1597,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 460.715891 - 0: The maximum resident set size (KB) = 1574736 + 0: The total amount of wall time = 459.581956 + 0: The maximum resident set size (KB) = 1604248 Test 029 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1647,14 +1647,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.957679 - 0: The maximum resident set size (KB) = 1633944 + 0: The total amount of wall time = 400.770384 + 0: The maximum resident set size (KB) = 1657028 Test 030 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1665,28 +1665,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 195.170415 - 0: The maximum resident set size (KB) = 669336 + 0: The total amount of wall time = 79.207858 + 0: The maximum resident set size (KB) = 668548 Test 031 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.789551 - 0: The maximum resident set size (KB) = 615688 + 0: The total amount of wall time = 45.856718 + 0: The maximum resident set size (KB) = 617172 Test 032 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1697,14 +1697,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 139.652173 - 0: The maximum resident set size (KB) = 672440 + 0: The total amount of wall time = 79.564996 + 0: The maximum resident set size (KB) = 669976 Test 033 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.552361 - 0: The maximum resident set size (KB) = 714212 + 0: The total amount of wall time = 121.482949 + 0: The maximum resident set size (KB) = 698052 Test 034 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1741,14 +1741,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.648723 - 0: The maximum resident set size (KB) = 708632 + 0: The total amount of wall time = 121.835903 + 0: The maximum resident set size (KB) = 711416 Test 035 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1795,14 +1795,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.023057 - 0: The maximum resident set size (KB) = 1634960 + 0: The total amount of wall time = 145.352831 + 0: The maximum resident set size (KB) = 1625752 Test 036 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1841,14 +1841,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 75.752212 - 0: The maximum resident set size (KB) = 980916 + 0: The total amount of wall time = 76.089097 + 0: The maximum resident set size (KB) = 975232 Test 037 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.657424 - 0: The maximum resident set size (KB) = 1645332 + 0: The total amount of wall time = 144.446948 + 0: The maximum resident set size (KB) = 1641384 Test 038 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 78.863684 - 0: The maximum resident set size (KB) = 902316 + 0: The total amount of wall time = 77.340743 + 0: The maximum resident set size (KB) = 915992 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,14 +1991,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.617970 - 0: The maximum resident set size (KB) = 1612180 + 0: The total amount of wall time = 147.975957 + 0: The maximum resident set size (KB) = 1623768 Test 040 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.052121 - 0: The maximum resident set size (KB) = 1707792 + 0: The total amount of wall time = 133.101534 + 0: The maximum resident set size (KB) = 1709532 Test 041 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2067,14 +2067,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 262.305174 - 0: The maximum resident set size (KB) = 1639688 + 0: The total amount of wall time = 260.885791 + 0: The maximum resident set size (KB) = 1623648 Test 042 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2121,14 +2121,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.179925 - 0: The maximum resident set size (KB) = 1703512 + 0: The total amount of wall time = 198.780727 + 0: The maximum resident set size (KB) = 1699172 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.858528 - 0: The maximum resident set size (KB) = 1633688 + 0: The total amount of wall time = 144.182101 + 0: The maximum resident set size (KB) = 1637704 Test 044 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2229,14 +2229,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.105737 - 0: The maximum resident set size (KB) = 1633824 + 0: The total amount of wall time = 163.158131 + 0: The maximum resident set size (KB) = 1638512 Test 045 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2247,28 +2247,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 248.288252 - 0: The maximum resident set size (KB) = 1232288 + 0: The total amount of wall time = 244.510081 + 0: The maximum resident set size (KB) = 1230868 Test 046 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 130.639644 - 0: The maximum resident set size (KB) = 1215156 + 0: The total amount of wall time = 128.991367 + 0: The maximum resident set size (KB) = 1217412 Test 047 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2279,28 +2279,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 248.336097 - 0: The maximum resident set size (KB) = 1230564 + 0: The total amount of wall time = 244.609381 + 0: The maximum resident set size (KB) = 1226956 Test 048 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 129.867680 - 0: The maximum resident set size (KB) = 1213020 + 0: The total amount of wall time = 129.011576 + 0: The maximum resident set size (KB) = 1212888 Test 049 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2311,14 +2311,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.755646 - 0: The maximum resident set size (KB) = 1209856 + 0: The total amount of wall time = 260.137366 + 0: The maximum resident set size (KB) = 1217840 Test 050 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2329,14 +2329,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.151695 - 0: The maximum resident set size (KB) = 1148848 + 0: The total amount of wall time = 147.977953 + 0: The maximum resident set size (KB) = 1148020 Test 051 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2344,28 +2344,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 244.247081 - 0: The maximum resident set size (KB) = 1485276 + 0: The total amount of wall time = 242.740140 + 0: The maximum resident set size (KB) = 1491672 Test 052 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 248.781917 - 0: The maximum resident set size (KB) = 1213696 + 0: The total amount of wall time = 240.303487 + 0: The maximum resident set size (KB) = 1218772 -Test 053 regional_netcdf_parallel_intel PASS Tries: 2 +Test 053 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2376,14 +2376,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 246.643757 - 0: The maximum resident set size (KB) = 1228324 + 0: The total amount of wall time = 244.344894 + 0: The maximum resident set size (KB) = 1226700 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2394,14 +2394,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.237751 - 0: The maximum resident set size (KB) = 1105328 + 0: The total amount of wall time = 306.215161 + 0: The maximum resident set size (KB) = 1092904 Test 055 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2448,14 +2448,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.635685 - 0: The maximum resident set size (KB) = 1384644 + 0: The total amount of wall time = 370.653555 + 0: The maximum resident set size (KB) = 1397096 Test 056 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 268.325143 - 0: The maximum resident set size (KB) = 1318792 + 0: The total amount of wall time = 197.390953 + 0: The maximum resident set size (KB) = 1322128 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.255471 - 0: The maximum resident set size (KB) = 1324304 + 0: The total amount of wall time = 390.039167 + 0: The maximum resident set size (KB) = 1337280 Test 058 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2574,14 +2574,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.156489 - 0: The maximum resident set size (KB) = 1555952 + 0: The total amount of wall time = 348.525579 + 0: The maximum resident set size (KB) = 1538704 Test 059 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2620,14 +2620,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.675302 - 0: The maximum resident set size (KB) = 1236860 + 0: The total amount of wall time = 189.222772 + 0: The maximum resident set size (KB) = 1226752 Test 060 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2674,14 +2674,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.394360 - 0: The maximum resident set size (KB) = 1418372 + 0: The total amount of wall time = 372.675152 + 0: The maximum resident set size (KB) = 1433888 Test 061 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2728,14 +2728,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.120186 - 0: The maximum resident set size (KB) = 1340140 + 0: The total amount of wall time = 395.433747 + 0: The maximum resident set size (KB) = 1348704 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.508216 - 0: The maximum resident set size (KB) = 1295084 + 0: The total amount of wall time = 274.052520 + 0: The maximum resident set size (KB) = 1283072 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_intel Checking test 064 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 064 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.027154 - 0: The maximum resident set size (KB) = 1370224 + 0: The total amount of wall time = 189.105153 + 0: The maximum resident set size (KB) = 1263608 Test 064 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_intel Checking test 065 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 065 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 356.958216 - 0: The maximum resident set size (KB) = 1174204 + 0: The total amount of wall time = 191.646294 + 0: The maximum resident set size (KB) = 1086692 Test 065 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.786807 - 0: The maximum resident set size (KB) = 1287272 + 0: The total amount of wall time = 193.990722 + 0: The maximum resident set size (KB) = 1235104 Test 066 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2990,42 +2990,42 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.154056 - 0: The maximum resident set size (KB) = 1258360 + 0: The total amount of wall time = 173.369741 + 0: The maximum resident set size (KB) = 1226684 Test 067 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 266.436656 - 0: The maximum resident set size (KB) = 1213832 + 0: The total amount of wall time = 98.343004 + 0: The maximum resident set size (KB) = 1119612 Test 068 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_intel Checking test 069 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 267.928206 - 0: The maximum resident set size (KB) = 1087688 + 0: The total amount of wall time = 101.773583 + 0: The maximum resident set size (KB) = 950256 Test 069 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.156249 - 0: The maximum resident set size (KB) = 1416728 + 0: The total amount of wall time = 359.354460 + 0: The maximum resident set size (KB) = 1360968 Test 070 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 444.810258 - 0: The maximum resident set size (KB) = 950732 + 0: The total amount of wall time = 444.380511 + 0: The maximum resident set size (KB) = 951640 Test 071 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,123 +3116,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 432.955945 - 0: The maximum resident set size (KB) = 1096980 + 0: The total amount of wall time = 436.107316 + 0: The maximum resident set size (KB) = 1108212 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_gf_intel -Checking test 073 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 436.284928 - 0: The maximum resident set size (KB) = 1397348 - -Test 073 hrrr_gf_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_c3_intel -Checking test 074 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 377.538280 - 0: The maximum resident set size (KB) = 1412972 - -Test 074 hrrr_c3_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmg_intel +Checking test 073 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3242,15 +3134,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 296.039329 - 0: The maximum resident set size (KB) = 984796 + 0: The total amount of wall time = 292.184651 + 0: The maximum resident set size (KB) = 969816 -Test 075 control_csawmg_intel PASS +Test 073 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmgt_intel +Checking test 074 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3260,15 +3152,15 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.684463 - 0: The maximum resident set size (KB) = 953884 + 0: The total amount of wall time = 291.308731 + 0: The maximum resident set size (KB) = 986400 -Test 076 control_csawmgt_intel PASS +Test 074 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_intel -Checking test 077 control_ras_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_intel +Checking test 075 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3278,27 +3170,27 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 157.494454 - 0: The maximum resident set size (KB) = 929868 + 0: The total amount of wall time = 157.307323 + 0: The maximum resident set size (KB) = 934056 -Test 077 control_ras_intel PASS +Test 075 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wam_intel -Checking test 078 control_wam_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wam_intel +Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 98.267773 - 0: The maximum resident set size (KB) = 854740 + 0: The total amount of wall time = 97.829082 + 0: The maximum resident set size (KB) = 868696 -Test 078 control_wam_intel PASS +Test 076 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_faster_intel +Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3344,15 +3236,15 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.063174 - 0: The maximum resident set size (KB) = 1624064 + 0: The total amount of wall time = 130.207567 + 0: The maximum resident set size (KB) = 1624132 -Test 079 control_p8_faster_intel PASS +Test 077 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_control_faster_intel +Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3362,15 +3254,15 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 223.366935 - 0: The maximum resident set size (KB) = 1230164 + 0: The total amount of wall time = 228.151363 + 0: The maximum resident set size (KB) = 1231552 -Test 080 regional_control_faster_intel PASS +Test 078 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_CubedSphereGrid_debug_intel +Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3396,336 +3288,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.276861 - 0: The maximum resident set size (KB) = 823248 + 0: The total amount of wall time = 124.702962 + 0: The maximum resident set size (KB) = 813192 -Test 081 control_CubedSphereGrid_debug_intel PASS +Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.261717 - 0: The maximum resident set size (KB) = 816528 + 0: The total amount of wall time = 125.833131 + 0: The maximum resident set size (KB) = 818648 -Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_debug_intel -Checking test 083 control_stochy_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_debug_intel +Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.552588 - 0: The maximum resident set size (KB) = 810752 + 0: The total amount of wall time = 143.186038 + 0: The maximum resident set size (KB) = 816272 -Test 083 control_stochy_debug_intel PASS +Test 081 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_lndp_debug_intel -Checking test 084 control_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_lndp_debug_intel +Checking test 082 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.821683 - 0: The maximum resident set size (KB) = 828456 + 0: The total amount of wall time = 126.232562 + 0: The maximum resident set size (KB) = 826548 -Test 084 control_lndp_debug_intel PASS +Test 082 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmg_debug_intel -Checking test 085 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmg_debug_intel +Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.099863 - 0: The maximum resident set size (KB) = 860384 + 0: The total amount of wall time = 199.044572 + 0: The maximum resident set size (KB) = 864748 -Test 085 control_csawmg_debug_intel PASS +Test 083 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_csawmgt_debug_intel -Checking test 086 control_csawmgt_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_csawmgt_debug_intel +Checking test 084 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.939834 - 0: The maximum resident set size (KB) = 858368 + 0: The total amount of wall time = 191.872911 + 0: The maximum resident set size (KB) = 855392 -Test 086 control_csawmgt_debug_intel PASS +Test 084 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_debug_intel -Checking test 087 control_ras_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_debug_intel +Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.741116 - 0: The maximum resident set size (KB) = 832788 + 0: The total amount of wall time = 126.536494 + 0: The maximum resident set size (KB) = 833552 -Test 087 control_ras_debug_intel PASS +Test 085 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_diag_debug_intel -Checking test 088 control_diag_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_diag_debug_intel +Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.253494 - 0: The maximum resident set size (KB) = 866920 + 0: The total amount of wall time = 130.864342 + 0: The maximum resident set size (KB) = 871972 -Test 088 control_diag_debug_intel PASS +Test 086 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_debug_p8_intel -Checking test 089 control_debug_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_debug_p8_intel +Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.924278 - 0: The maximum resident set size (KB) = 1643788 + 0: The total amount of wall time = 142.477975 + 0: The maximum resident set size (KB) = 1650448 -Test 089 control_debug_p8_intel PASS +Test 087 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_debug_intel -Checking test 090 regional_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_debug_intel +Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 832.342395 - 0: The maximum resident set size (KB) = 1215772 + 0: The total amount of wall time = 825.877277 + 0: The maximum resident set size (KB) = 1230280 + +Test 088 regional_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_intel +Checking test 089 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 230.799313 + 0: The maximum resident set size (KB) = 1212024 -Test 090 regional_debug_intel PASS +Test 089 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_intel -Checking test 091 rap_control_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_intel +Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.235595 - 0: The maximum resident set size (KB) = 1227644 + 0: The total amount of wall time = 226.588406 + 0: The maximum resident set size (KB) = 1197916 -Test 091 rap_control_debug_intel PASS +Test 090 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_intel -Checking test 092 hrrr_control_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_gf_debug_intel +Checking test 091 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.262702 - 0: The maximum resident set size (KB) = 1196668 + 0: The total amount of wall time = 232.516778 + 0: The maximum resident set size (KB) = 1236848 -Test 092 hrrr_control_debug_intel PASS +Test 091 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_c3_debug_intel +Checking test 092 hrrr_c3_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 231.613336 + 0: The maximum resident set size (KB) = 1232300 + +Test 092 hrrr_c3_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.602188 - 0: The maximum resident set size (KB) = 1206640 + 0: The total amount of wall time = 233.072300 + 0: The maximum resident set size (KB) = 1237580 Test 093 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.256398 - 0: The maximum resident set size (KB) = 1345348 + 0: The total amount of wall time = 243.469081 + 0: The maximum resident set size (KB) = 1319700 Test 094 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.995337 - 0: The maximum resident set size (KB) = 1220352 + 0: The total amount of wall time = 239.112012 + 0: The maximum resident set size (KB) = 1223264 Test 095 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.345340 - 0: The maximum resident set size (KB) = 1227684 + 0: The total amount of wall time = 238.407463 + 0: The maximum resident set size (KB) = 1217772 Test 096 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.872015 - 0: The maximum resident set size (KB) = 1245492 + 0: The total amount of wall time = 232.999840 + 0: The maximum resident set size (KB) = 1234800 Test 097 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.225150 - 0: The maximum resident set size (KB) = 1233072 + 0: The total amount of wall time = 239.189004 + 0: The maximum resident set size (KB) = 1216164 Test 098 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.957906 - 0: The maximum resident set size (KB) = 1219608 + 0: The total amount of wall time = 225.169653 + 0: The maximum resident set size (KB) = 1219896 Test 099 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.141300 - 0: The maximum resident set size (KB) = 1211444 + 0: The total amount of wall time = 231.134519 + 0: The maximum resident set size (KB) = 1236836 Test 100 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.983788 - 0: The maximum resident set size (KB) = 1234172 + 0: The total amount of wall time = 379.013842 + 0: The maximum resident set size (KB) = 1241316 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.389988 - 0: The maximum resident set size (KB) = 1196368 + 0: The total amount of wall time = 226.953403 + 0: The maximum resident set size (KB) = 1203928 Test 102 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.203222 - 0: The maximum resident set size (KB) = 1224688 + 0: The total amount of wall time = 283.478974 + 0: The maximum resident set size (KB) = 1226460 Test 103 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.115031 - 0: The maximum resident set size (KB) = 1222536 + 0: The total amount of wall time = 233.638319 + 0: The maximum resident set size (KB) = 1229696 Test 104 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3736,14 +3656,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 179.381306 - 0: The maximum resident set size (KB) = 1217668 + 0: The total amount of wall time = 185.315390 + 0: The maximum resident set size (KB) = 1221956 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn32_phy32_intel Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3710,14 @@ Checking test 106 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.070291 - 0: The maximum resident set size (KB) = 1214116 + 0: The total amount of wall time = 306.616935 + 0: The maximum resident set size (KB) = 1217584 Test 106 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_dyn32_phy32_intel Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3844,14 +3764,14 @@ Checking test 107 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.413451 - 0: The maximum resident set size (KB) = 1137848 + 0: The total amount of wall time = 162.337938 + 0: The maximum resident set size (KB) = 1107900 Test 107 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_dyn32_phy32_intel Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3898,14 +3818,14 @@ Checking test 108 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.439012 - 0: The maximum resident set size (KB) = 1036376 + 0: The total amount of wall time = 163.685529 + 0: The maximum resident set size (KB) = 1045172 Test 108 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_dyn32_phy32_intel Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3952,14 +3872,14 @@ Checking test 109 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.676308 - 0: The maximum resident set size (KB) = 1354728 + 0: The total amount of wall time = 291.398679 + 0: The maximum resident set size (KB) = 1349728 Test 109 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_dyn32_phy32_intel Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4006,14 +3926,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.101005 - 0: The maximum resident set size (KB) = 1065016 + 0: The total amount of wall time = 148.098664 + 0: The maximum resident set size (KB) = 1066528 Test 110 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_dyn32_phy32_intel Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4060,14 +3980,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.672682 - 0: The maximum resident set size (KB) = 1074504 + 0: The total amount of wall time = 172.585823 + 0: The maximum resident set size (KB) = 1072656 Test 111 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_dyn32_phy32_intel Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4106,42 +4026,42 @@ Checking test 112 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.656350 - 0: The maximum resident set size (KB) = 1131412 + 0: The total amount of wall time = 230.261347 + 0: The maximum resident set size (KB) = 1133048 Test 112 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_dyn32_phy32_intel Checking test 113 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.031432 - 0: The maximum resident set size (KB) = 986312 + 0: The total amount of wall time = 85.910830 + 0: The maximum resident set size (KB) = 1002224 Test 113 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 114 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.801877 - 0: The maximum resident set size (KB) = 912784 + 0: The total amount of wall time = 86.221068 + 0: The maximum resident set size (KB) = 942996 Test 114 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4157,40 +4077,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 96.096021 - 0: The maximum resident set size (KB) = 1355780 + 0: The total amount of wall time = 96.528156 + 0: The maximum resident set size (KB) = 1352640 Test 115 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 42.315326 - 0: The maximum resident set size (KB) = 1252732 + 0: The total amount of wall time = 42.096729 + 0: The maximum resident set size (KB) = 1251820 Test 116 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 55.329725 - 0: The maximum resident set size (KB) = 1225712 + 0: The total amount of wall time = 55.986813 + 0: The maximum resident set size (KB) = 1229864 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4237,124 +4157,152 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.428130 - 0: The maximum resident set size (KB) = 1276128 + 0: The total amount of wall time = 211.685954 + 0: The maximum resident set size (KB) = 1260268 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.779469 - 0: The maximum resident set size (KB) = 1087820 + 0: The total amount of wall time = 223.851197 + 0: The maximum resident set size (KB) = 1082248 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.235438 - 0: The maximum resident set size (KB) = 1081904 + 0: The total amount of wall time = 220.647056 + 0: The maximum resident set size (KB) = 1081404 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 686.878010 - 0: The maximum resident set size (KB) = 1385836 + 0: The total amount of wall time = 686.631473 + 0: The maximum resident set size (KB) = 1388636 Test 121 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_2threads_intel -Checking test 122 conus13km_debug_2threads_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_qr_intel +Checking test 122 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 385.405163 - 0: The maximum resident set size (KB) = 1281300 + 0: The total amount of wall time = 698.414915 + 0: The maximum resident set size (KB) = 1001208 -Test 122 conus13km_debug_2threads_intel PASS +Test 122 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_radar_tten_debug_intel -Checking test 123 conus13km_radar_tten_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_2threads_intel +Checking test 123 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 688.751205 - 0: The maximum resident set size (KB) = 1461308 + 0: The total amount of wall time = 391.471379 + 0: The maximum resident set size (KB) = 1280580 -Test 123 conus13km_radar_tten_debug_intel PASS +Test 123 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_debug_intel -Checking test 124 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_radar_tten_debug_intel +Checking test 124 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.794173 - 0: The maximum resident set size (KB) = 1204092 + 0: The total amount of wall time = 694.250139 + 0: The maximum resident set size (KB) = 1458668 -Test 124 rap_control_dyn64_phy32_debug_intel PASS +Test 124 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_intel -Checking test 125 hafs_regional_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_debug_intel +Checking test 125 rap_control_dyn64_phy32_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 226.910140 + 0: The maximum resident set size (KB) = 1179440 + +Test 125 rap_control_dyn64_phy32_debug_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_intel +Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 193.239643 - 0: The maximum resident set size (KB) = 1475924 + 0: The total amount of wall time = 203.229902 + 0: The maximum resident set size (KB) = 1474244 -Test 125 hafs_regional_atm_intel PASS +Test 126 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 126 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 231.665591 - 0: The maximum resident set size (KB) = 1811760 + 0: The total amount of wall time = 237.821791 + 0: The maximum resident set size (KB) = 1826896 -Test 126 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_ocn_intel -Checking test 127 hafs_regional_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_ocn_intel +Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4362,15 +4310,15 @@ Checking test 127 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 350.675249 - 0: The maximum resident set size (KB) = 1786948 + 0: The total amount of wall time = 348.776339 + 0: The maximum resident set size (KB) = 1785876 -Test 127 hafs_regional_atm_ocn_intel PASS +Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_wav_intel -Checking test 128 hafs_regional_atm_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_wav_intel +Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4378,15 +4326,15 @@ Checking test 128 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 818.580920 - 0: The maximum resident set size (KB) = 1827716 + 0: The total amount of wall time = 800.102823 + 0: The maximum resident set size (KB) = 1817236 -Test 128 hafs_regional_atm_wav_intel PASS +Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_atm_ocn_wav_intel -Checking test 129 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_atm_ocn_wav_intel +Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4396,15 +4344,15 @@ Checking test 129 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 878.981498 - 0: The maximum resident set size (KB) = 1855584 + 0: The total amount of wall time = 855.957543 + 0: The maximum resident set size (KB) = 1853356 -Test 129 hafs_regional_atm_ocn_wav_intel PASS +Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_1nest_atm_intel -Checking test 130 hafs_regional_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_1nest_atm_intel +Checking test 131 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4425,15 +4373,15 @@ Checking test 130 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 259.240302 - 0: The maximum resident set size (KB) = 787220 + 0: The total amount of wall time = 258.593564 + 0: The maximum resident set size (KB) = 791824 -Test 130 hafs_regional_1nest_atm_intel PASS +Test 131 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_1nest_atm_qr_intel -Checking test 131 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_1nest_atm_qr_intel +Checking test 132 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4454,15 +4402,15 @@ Checking test 131 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 288.894593 - 0: The maximum resident set size (KB) = 603960 + 0: The total amount of wall time = 265.568551 + 0: The maximum resident set size (KB) = 604912 -Test 131 hafs_regional_1nest_atm_qr_intel PASS +Test 132 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_telescopic_2nests_atm_intel -Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_telescopic_2nests_atm_intel +Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4470,15 +4418,15 @@ Checking test 132 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 301.337411 - 0: The maximum resident set size (KB) = 786488 + 0: The total amount of wall time = 305.897866 + 0: The maximum resident set size (KB) = 790996 -Test 132 hafs_regional_telescopic_2nests_atm_intel PASS +Test 133 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_1nest_atm_intel -Checking test 133 hafs_global_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_1nest_atm_intel +Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4524,15 +4472,15 @@ Checking test 133 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 120.481158 - 0: The maximum resident set size (KB) = 459600 + 0: The total amount of wall time = 119.823576 + 0: The maximum resident set size (KB) = 462776 -Test 133 hafs_global_1nest_atm_intel PASS +Test 134 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_1nest_atm_qr_intel -Checking test 134 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_1nest_atm_qr_intel +Checking test 135 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4578,15 +4526,15 @@ Checking test 134 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 154.639927 - 0: The maximum resident set size (KB) = 434000 + 0: The total amount of wall time = 128.743196 + 0: The maximum resident set size (KB) = 441656 -Test 134 hafs_global_1nest_atm_qr_intel PASS +Test 135 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_multiple_4nests_atm_intel -Checking test 135 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_multiple_4nests_atm_intel +Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4667,15 +4615,15 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 338.516681 - 0: The maximum resident set size (KB) = 554068 + 0: The total amount of wall time = 341.183203 + 0: The maximum resident set size (KB) = 552928 -Test 135 hafs_global_multiple_4nests_atm_intel PASS +Test 136 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_multiple_4nests_atm_qr_intel -Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_multiple_4nests_atm_qr_intel +Checking test 137 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4756,15 +4704,15 @@ Checking test 136 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 404.944285 - 0: The maximum resident set size (KB) = 537336 + 0: The total amount of wall time = 349.276956 + 0: The maximum resident set size (KB) = 541692 -Test 136 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 137 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_specified_moving_1nest_atm_intel -Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_specified_moving_1nest_atm_intel +Checking test 138 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4772,15 +4720,15 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 169.354539 - 0: The maximum resident set size (KB) = 798484 + 0: The total amount of wall time = 174.753726 + 0: The maximum resident set size (KB) = 795164 -Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 138 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4801,15 +4749,15 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 157.518869 - 0: The maximum resident set size (KB) = 791656 + 0: The total amount of wall time = 158.953462 + 0: The maximum resident set size (KB) = 795544 -Test 138 hafs_regional_storm_following_1nest_atm_intel PASS +Test 139 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4830,15 +4778,15 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 185.697033 - 0: The maximum resident set size (KB) = 614784 + 0: The total amount of wall time = 162.486049 + 0: The maximum resident set size (KB) = 617264 -Test 139 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4846,43 +4794,43 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 215.105662 - 0: The maximum resident set size (KB) = 848300 + 0: The total amount of wall time = 217.184959 + 0: The maximum resident set size (KB) = 846044 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_global_storm_following_1nest_atm_intel -Checking test 141 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_global_storm_following_1nest_atm_intel +Checking test 142 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 49.105282 - 0: The maximum resident set size (KB) = 470616 + 0: The total amount of wall time = 47.142808 + 0: The maximum resident set size (KB) = 472820 -Test 141 hafs_global_storm_following_1nest_atm_intel PASS +Test 142 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 594.426803 - 0: The maximum resident set size (KB) = 845028 + 0: The total amount of wall time = 602.690959 + 0: The maximum resident set size (KB) = 850456 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4892,162 +4840,162 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 909.170439 - 0: The maximum resident set size (KB) = 901828 + 0: The total amount of wall time = 962.906044 + 0: The maximum resident set size (KB) = 937868 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_docn_intel -Checking test 144 hafs_regional_docn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_docn_intel +Checking test 145 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 282.325719 - 0: The maximum resident set size (KB) = 1776244 + 0: The total amount of wall time = 290.506788 + 0: The maximum resident set size (KB) = 1774952 -Test 144 hafs_regional_docn_intel PASS +Test 145 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_docn_oisst_intel -Checking test 145 hafs_regional_docn_oisst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_docn_oisst_intel +Checking test 146 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 285.747932 - 0: The maximum resident set size (KB) = 1756812 + 0: The total amount of wall time = 289.688137 + 0: The maximum resident set size (KB) = 1762776 -Test 145 hafs_regional_docn_oisst_intel PASS +Test 146 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hafs_regional_datm_cdeps_intel -Checking test 146 hafs_regional_datm_cdeps_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hafs_regional_datm_cdeps_intel +Checking test 147 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 975.437898 - 0: The maximum resident set size (KB) = 1342368 + 0: The total amount of wall time = 972.201906 + 0: The maximum resident set size (KB) = 1338496 -Test 146 hafs_regional_datm_cdeps_intel PASS +Test 147 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_intel -Checking test 147 datm_cdeps_control_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_intel +Checking test 148 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.759492 - 0: The maximum resident set size (KB) = 1140596 + 0: The total amount of wall time = 121.258564 + 0: The maximum resident set size (KB) = 1134040 -Test 147 datm_cdeps_control_cfsr_intel PASS +Test 148 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_restart_cfsr_intel -Checking test 148 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_restart_cfsr_intel +Checking test 149 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 76.164190 - 0: The maximum resident set size (KB) = 1094280 + 0: The total amount of wall time = 76.664445 + 0: The maximum resident set size (KB) = 1096124 -Test 148 datm_cdeps_restart_cfsr_intel PASS +Test 149 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_gefs_intel -Checking test 149 datm_cdeps_control_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_gefs_intel +Checking test 150 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.522337 - 0: The maximum resident set size (KB) = 1003200 + 0: The total amount of wall time = 118.994370 + 0: The maximum resident set size (KB) = 1005596 -Test 149 datm_cdeps_control_gefs_intel PASS +Test 150 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_iau_gefs_intel -Checking test 150 datm_cdeps_iau_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_iau_gefs_intel +Checking test 151 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.536476 - 0: The maximum resident set size (KB) = 1000432 + 0: The total amount of wall time = 119.855768 + 0: The maximum resident set size (KB) = 1006492 -Test 150 datm_cdeps_iau_gefs_intel PASS +Test 151 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_stochy_gefs_intel -Checking test 151 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_stochy_gefs_intel +Checking test 152 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.138792 - 0: The maximum resident set size (KB) = 1008492 + 0: The total amount of wall time = 123.784610 + 0: The maximum resident set size (KB) = 1000208 -Test 151 datm_cdeps_stochy_gefs_intel PASS +Test 152 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_ciceC_cfsr_intel -Checking test 152 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_ciceC_cfsr_intel +Checking test 153 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.941341 - 0: The maximum resident set size (KB) = 1117040 + 0: The total amount of wall time = 123.461095 + 0: The maximum resident set size (KB) = 1139984 -Test 152 datm_cdeps_ciceC_cfsr_intel PASS +Test 153 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_bulk_cfsr_intel -Checking test 153 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_bulk_cfsr_intel +Checking test 154 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.689653 - 0: The maximum resident set size (KB) = 1120560 + 0: The total amount of wall time = 122.808801 + 0: The maximum resident set size (KB) = 1114876 -Test 153 datm_cdeps_bulk_cfsr_intel PASS +Test 154 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_bulk_gefs_intel -Checking test 154 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_bulk_gefs_intel +Checking test 155 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.128071 - 0: The maximum resident set size (KB) = 1006296 + 0: The total amount of wall time = 116.927470 + 0: The maximum resident set size (KB) = 1005492 -Test 154 datm_cdeps_bulk_gefs_intel PASS +Test 155 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_mx025_cfsr_intel -Checking test 155 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_mx025_cfsr_intel +Checking test 156 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5055,15 +5003,15 @@ Checking test 155 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 315.082839 - 0: The maximum resident set size (KB) = 1149588 + 0: The total amount of wall time = 336.928017 + 0: The maximum resident set size (KB) = 1135812 -Test 155 datm_cdeps_mx025_cfsr_intel PASS +Test 156 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_mx025_gefs_intel -Checking test 156 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_mx025_gefs_intel +Checking test 157 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5071,78 +5019,78 @@ Checking test 156 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 313.011823 - 0: The maximum resident set size (KB) = 1139328 + 0: The total amount of wall time = 340.024134 + 0: The maximum resident set size (KB) = 1133188 -Test 156 datm_cdeps_mx025_gefs_intel PASS +Test 157 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_multiple_files_cfsr_intel -Checking test 157 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_multiple_files_cfsr_intel +Checking test 158 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.703312 - 0: The maximum resident set size (KB) = 1127440 + 0: The total amount of wall time = 121.993527 + 0: The maximum resident set size (KB) = 1134392 -Test 157 datm_cdeps_multiple_files_cfsr_intel PASS +Test 158 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_3072x1536_cfsr_intel -Checking test 158 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_3072x1536_cfsr_intel +Checking test 159 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.387162 - 0: The maximum resident set size (KB) = 2415776 + 0: The total amount of wall time = 173.830990 + 0: The maximum resident set size (KB) = 2417460 -Test 158 datm_cdeps_3072x1536_cfsr_intel PASS +Test 159 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_gfs_intel -Checking test 159 datm_cdeps_gfs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_gfs_intel +Checking test 160 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 176.497446 - 0: The maximum resident set size (KB) = 2416980 + 0: The total amount of wall time = 176.722210 + 0: The maximum resident set size (KB) = 2365304 -Test 159 datm_cdeps_gfs_intel PASS +Test 160 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_debug_cfsr_intel -Checking test 160 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_debug_cfsr_intel +Checking test 161 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 290.705781 - 0: The maximum resident set size (KB) = 1065256 + 0: The total amount of wall time = 293.748130 + 0: The maximum resident set size (KB) = 1060832 -Test 160 datm_cdeps_debug_cfsr_intel PASS +Test 161 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_faster_intel -Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_faster_intel +Checking test 162 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.739903 - 0: The maximum resident set size (KB) = 1140604 + 0: The total amount of wall time = 122.437539 + 0: The maximum resident set size (KB) = 1141104 -Test 161 datm_cdeps_control_cfsr_faster_intel PASS +Test 162 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_lnd_gswp3_intel -Checking test 162 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_lnd_gswp3_intel +Checking test 163 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5150,15 +5098,15 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 8.421557 - 0: The maximum resident set size (KB) = 329960 + 0: The total amount of wall time = 5.610921 + 0: The maximum resident set size (KB) = 335868 -Test 162 datm_cdeps_lnd_gswp3_intel PASS +Test 163 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_lnd_gswp3_rst_intel -Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_lnd_gswp3_rst_intel +Checking test 164 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5166,15 +5114,15 @@ Checking test 163 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.495476 - 0: The maximum resident set size (KB) = 337168 + 0: The total amount of wall time = 8.736260 + 0: The maximum resident set size (KB) = 342196 -Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 164 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_atmlnd_sbs_intel -Checking test 164 control_p8_atmlnd_sbs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_atmlnd_sbs_intel +Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5258,15 +5206,15 @@ Checking test 164 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 181.908748 - 0: The maximum resident set size (KB) = 1692284 + 0: The total amount of wall time = 180.018536 + 0: The maximum resident set size (KB) = 1689464 -Test 164 control_p8_atmlnd_sbs_intel PASS +Test 165 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmwav_control_noaero_p8_intel -Checking test 165 atmwav_control_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmwav_control_noaero_p8_intel +Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5308,15 +5256,15 @@ Checking test 165 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 84.418759 - 0: The maximum resident set size (KB) = 1673064 + 0: The total amount of wall time = 81.424660 + 0: The maximum resident set size (KB) = 1682068 -Test 165 atmwav_control_noaero_p8_intel PASS +Test 166 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_atmwav_intel -Checking test 166 control_atmwav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_atmwav_intel +Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5359,15 +5307,15 @@ Checking test 166 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.541883 - 0: The maximum resident set size (KB) = 686832 + 0: The total amount of wall time = 75.082298 + 0: The maximum resident set size (KB) = 684584 -Test 166 control_atmwav_intel PASS +Test 167 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_intel -Checking test 167 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_intel +Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5410,15 +5358,15 @@ Checking test 167 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.399354 - 0: The maximum resident set size (KB) = 1767960 + 0: The total amount of wall time = 201.004018 + 0: The maximum resident set size (KB) = 1763916 -Test 167 atmaero_control_p8_intel PASS +Test 168 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_rad_intel -Checking test 168 atmaero_control_p8_rad_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_rad_intel +Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5461,15 +5409,15 @@ Checking test 168 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.786105 - 0: The maximum resident set size (KB) = 1798744 + 0: The total amount of wall time = 244.278236 + 0: The maximum resident set size (KB) = 1791452 -Test 168 atmaero_control_p8_rad_intel PASS +Test 169 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/atmaero_control_p8_rad_micro_intel -Checking test 169 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/atmaero_control_p8_rad_micro_intel +Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5512,15 +5460,15 @@ Checking test 169 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.376974 - 0: The maximum resident set size (KB) = 1810748 + 0: The total amount of wall time = 247.167724 + 0: The maximum resident set size (KB) = 1795752 -Test 169 atmaero_control_p8_rad_micro_intel PASS +Test 170 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_intel -Checking test 170 regional_atmaq_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_intel +Checking test 171 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5535,15 +5483,15 @@ Checking test 170 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 569.165208 - 0: The maximum resident set size (KB) = 5465640 + 0: The total amount of wall time = 556.102910 + 0: The maximum resident set size (KB) = 5503924 -Test 170 regional_atmaq_intel PASS +Test 171 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_debug_intel -Checking test 171 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_debug_intel +Checking test 172 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5556,15 +5504,15 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 981.515014 - 0: The maximum resident set size (KB) = 4986236 + 0: The total amount of wall time = 978.278884 + 0: The maximum resident set size (KB) = 4988624 -Test 171 regional_atmaq_debug_intel PASS +Test 172 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_atmaq_faster_intel -Checking test 172 regional_atmaq_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_atmaq_faster_intel +Checking test 173 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5579,15 +5527,15 @@ Checking test 172 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 492.784221 - 0: The maximum resident set size (KB) = 5498080 + 0: The total amount of wall time = 482.817488 + 0: The maximum resident set size (KB) = 5480132 -Test 172 regional_atmaq_faster_intel PASS +Test 173 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_c48_gnu -Checking test 173 control_c48_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_c48_gnu +Checking test 174 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5625,15 +5573,15 @@ Checking test 173 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 555.496377 -The maximum resident set size (KB) = 761748 +The total amount of wall time = 556.657994 +The maximum resident set size (KB) = 761836 -Test 173 control_c48_gnu PASS +Test 174 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_gnu -Checking test 174 control_stochy_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_gnu +Checking test 175 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5643,15 +5591,15 @@ Checking test 174 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 123.290551 -The maximum resident set size (KB) = 568328 +The total amount of wall time = 124.126159 +The maximum resident set size (KB) = 562628 -Test 174 control_stochy_gnu PASS +Test 175 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_gnu -Checking test 175 control_ras_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_gnu +Checking test 176 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5661,15 +5609,15 @@ Checking test 175 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 208.317298 -The maximum resident set size (KB) = 574080 +The total amount of wall time = 206.528383 +The maximum resident set size (KB) = 569748 -Test 175 control_ras_gnu PASS +Test 176 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_p8_gnu -Checking test 176 control_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_p8_gnu +Checking test 177 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5715,15 +5663,15 @@ Checking test 176 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 216.820713 -The maximum resident set size (KB) = 1321464 +The total amount of wall time = 218.612097 +The maximum resident set size (KB) = 1321580 -Test 176 control_p8_gnu PASS +Test 177 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_flake_gnu -Checking test 177 control_flake_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_flake_gnu +Checking test 178 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5733,15 +5681,15 @@ Checking test 177 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.181814 -The maximum resident set size (KB) = 611032 +The total amount of wall time = 248.506191 +The maximum resident set size (KB) = 610884 -Test 177 control_flake_gnu PASS +Test 178 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_gnu -Checking test 178 rap_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_gnu +Checking test 179 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5787,15 +5735,15 @@ Checking test 178 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 448.284641 -The maximum resident set size (KB) = 915220 +The total amount of wall time = 440.283577 +The maximum resident set size (KB) = 917932 -Test 178 rap_control_gnu PASS +Test 179 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_decomp_gnu -Checking test 179 rap_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_decomp_gnu +Checking test 180 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5841,15 +5789,15 @@ Checking test 179 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.094117 -The maximum resident set size (KB) = 914908 +The total amount of wall time = 454.473113 +The maximum resident set size (KB) = 920568 -Test 179 rap_decomp_gnu PASS +Test 180 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_gnu -Checking test 180 rap_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_gnu +Checking test 181 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5895,15 +5843,15 @@ Checking test 180 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.627479 -The maximum resident set size (KB) = 986560 +The total amount of wall time = 400.105073 +The maximum resident set size (KB) = 987360 -Test 180 rap_2threads_gnu PASS +Test 181 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_gnu -Checking test 181 rap_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_gnu +Checking test 182 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -5941,15 +5889,15 @@ Checking test 181 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.535963 -The maximum resident set size (KB) = 785380 +The total amount of wall time = 221.033795 +The maximum resident set size (KB) = 787012 -Test 181 rap_restart_gnu PASS +Test 182 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_gnu -Checking test 182 rap_sfcdiff_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_gnu +Checking test 183 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5995,15 +5943,15 @@ Checking test 182 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 448.496406 -The maximum resident set size (KB) = 913948 +The total amount of wall time = 445.070524 +The maximum resident set size (KB) = 917536 -Test 182 rap_sfcdiff_gnu PASS +Test 183 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_decomp_gnu -Checking test 183 rap_sfcdiff_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_decomp_gnu +Checking test 184 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6049,15 +5997,15 @@ Checking test 183 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 454.179726 -The maximum resident set size (KB) = 920256 +The total amount of wall time = 455.707660 +The maximum resident set size (KB) = 921600 -Test 183 rap_sfcdiff_decomp_gnu PASS +Test 184 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_sfcdiff_restart_gnu -Checking test 184 rap_sfcdiff_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_sfcdiff_restart_gnu +Checking test 185 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6095,15 +6043,15 @@ Checking test 184 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 324.923635 -The maximum resident set size (KB) = 793948 +The total amount of wall time = 326.484426 +The maximum resident set size (KB) = 795284 -Test 184 rap_sfcdiff_restart_gnu PASS +Test 185 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_gnu -Checking test 185 hrrr_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_gnu +Checking test 186 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6149,15 +6097,15 @@ Checking test 185 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.696926 -The maximum resident set size (KB) = 910496 +The total amount of wall time = 228.162587 +The maximum resident set size (KB) = 918532 -Test 185 hrrr_control_gnu PASS +Test 186 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_gnu -Checking test 186 hrrr_control_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_gnu +Checking test 187 hrrr_control_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6203,15 +6151,15 @@ Checking test 186 hrrr_control_qr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 431.377885 -The maximum resident set size (KB) = 922296 +The total amount of wall time = 227.032460 +The maximum resident set size (KB) = 931092 -Test 186 hrrr_control_qr_gnu PASS +Test 187 hrrr_control_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_gnu -Checking test 187 hrrr_control_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_gnu +Checking test 188 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6257,15 +6205,15 @@ Checking test 187 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 381.858215 -The maximum resident set size (KB) = 971500 +The total amount of wall time = 200.472419 +The maximum resident set size (KB) = 971972 -Test 187 hrrr_control_2threads_gnu PASS +Test 188 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_gnu -Checking test 188 hrrr_control_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_gnu +Checking test 189 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6311,43 +6259,43 @@ Checking test 188 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 429.982448 -The maximum resident set size (KB) = 910700 +The total amount of wall time = 226.968201 +The maximum resident set size (KB) = 917276 -Test 188 hrrr_control_decomp_gnu PASS +Test 189 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_gnu -Checking test 189 hrrr_control_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_gnu +Checking test 190 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 316.642832 -The maximum resident set size (KB) = 739972 +The total amount of wall time = 113.726364 +The maximum resident set size (KB) = 738876 -Test 189 hrrr_control_restart_gnu PASS +Test 190 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_gnu -Checking test 190 hrrr_control_restart_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_gnu +Checking test 191 hrrr_control_restart_qr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 323.477670 -The maximum resident set size (KB) = 648584 +The total amount of wall time = 117.265440 +The maximum resident set size (KB) = 642360 -Test 190 hrrr_control_restart_qr_gnu PASS +Test 191 hrrr_control_restart_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_gnu -Checking test 191 rrfs_v1beta_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_gnu +Checking test 192 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6393,251 +6341,225 @@ Checking test 191 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.611591 -The maximum resident set size (KB) = 911772 - -Test 191 rrfs_v1beta_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_gf_gnu -Checking test 192 hrrr_gf_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 446.046854 -The maximum resident set size (KB) = 915516 +The total amount of wall time = 440.214922 +The maximum resident set size (KB) = 915596 -Test 192 hrrr_gf_gnu PASS +Test 192 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_diag_debug_gnu Checking test 193 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 68.659211 -The maximum resident set size (KB) = 609164 +The total amount of wall time = 65.584943 +The maximum resident set size (KB) = 607560 Test 193 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/regional_debug_gnu Checking test 194 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 352.305905 -The maximum resident set size (KB) = 856032 +The total amount of wall time = 357.394977 +The maximum resident set size (KB) = 857240 Test 194 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_gnu Checking test 195 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.298342 -The maximum resident set size (KB) = 924656 +The total amount of wall time = 108.392388 +The maximum resident set size (KB) = 927160 Test 195 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_gnu Checking test 196 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 108.800899 -The maximum resident set size (KB) = 924152 +The total amount of wall time = 106.640476 +The maximum resident set size (KB) = 925920 Test 196 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_diag_debug_gnu -Checking test 197 rap_diag_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_gf_debug_gnu +Checking test 197 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 116.549116 -The maximum resident set size (KB) = 1007056 +The total amount of wall time = 108.282137 +The maximum resident set size (KB) = 924568 -Test 197 rap_diag_debug_gnu PASS +Test 197 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_c3_debug_gnu +Checking test 198 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 172.530071 -The maximum resident set size (KB) = 925220 +The total amount of wall time = 113.842297 +The maximum resident set size (KB) = 924492 -Test 198 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 198 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_progcld_thompson_debug_gnu -Checking test 199 rap_progcld_thompson_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_diag_debug_gnu +Checking test 199 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 106.425843 -The maximum resident set size (KB) = 922956 +The total amount of wall time = 115.995783 +The maximum resident set size (KB) = 1005508 -Test 199 rap_progcld_thompson_debug_gnu PASS +Test 199 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rrfs_v1beta_debug_gnu -Checking test 200 rrfs_v1beta_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 200 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 104.801435 -The maximum resident set size (KB) = 921188 +The total amount of wall time = 173.224814 +The maximum resident set size (KB) = 927752 -Test 200 rrfs_v1beta_debug_gnu PASS +Test 200 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_ras_debug_gnu -Checking test 201 control_ras_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_progcld_thompson_debug_gnu +Checking test 201 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 60.163142 -The maximum resident set size (KB) = 563140 +The total amount of wall time = 110.261666 +The maximum resident set size (KB) = 927396 -Test 201 control_ras_debug_gnu PASS +Test 201 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_stochy_debug_gnu -Checking test 202 control_stochy_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rrfs_v1beta_debug_gnu +Checking test 202 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 66.011540 -The maximum resident set size (KB) = 554784 +The total amount of wall time = 108.587224 +The maximum resident set size (KB) = 919684 -Test 202 control_stochy_debug_gnu PASS +Test 202 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/control_debug_p8_gnu -Checking test 203 control_debug_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_ras_debug_gnu +Checking test 203 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 69.602261 -The maximum resident set size (KB) = 1310840 +The total amount of wall time = 60.744511 +The maximum resident set size (KB) = 561980 -Test 203 control_debug_p8_gnu PASS +Test 203 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_flake_debug_gnu -Checking test 204 rap_flake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_stochy_debug_gnu +Checking test 204 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 105.020167 -The maximum resident set size (KB) = 926008 +The total amount of wall time = 68.271652 +The maximum resident set size (KB) = 553528 -Test 204 rap_flake_debug_gnu PASS +Test 204 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_clm_lake_debug_gnu -Checking test 205 rap_clm_lake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/control_debug_p8_gnu +Checking test 205 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 119.170152 -The maximum resident set size (KB) = 925712 +The total amount of wall time = 70.392363 +The maximum resident set size (KB) = 1311676 -Test 205 rap_clm_lake_debug_gnu PASS +Test 205 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn32_phy32_gnu -Checking test 206 rap_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_flake_debug_gnu +Checking test 206 rap_flake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 106.982014 +The maximum resident set size (KB) = 924592 + +Test 206 rap_flake_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_clm_lake_debug_gnu +Checking test 207 rap_clm_lake_debug_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 120.123907 +The maximum resident set size (KB) = 927752 + +Test 207 rap_clm_lake_debug_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn32_phy32_gnu +Checking test 208 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6683,15 +6605,15 @@ Checking test 206 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 424.991464 -The maximum resident set size (KB) = 772952 +The total amount of wall time = 422.344127 +The maximum resident set size (KB) = 772388 -Test 206 rap_control_dyn32_phy32_gnu PASS +Test 208 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_dyn32_phy32_gnu -Checking test 207 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_dyn32_phy32_gnu +Checking test 209 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6737,15 +6659,15 @@ Checking test 207 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 219.543224 -The maximum resident set size (KB) = 773572 +The total amount of wall time = 215.243799 +The maximum resident set size (KB) = 769668 -Test 207 hrrr_control_dyn32_phy32_gnu PASS +Test 209 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_qr_dyn32_phy32_gnu -Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_qr_dyn32_phy32_gnu +Checking test 210 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6791,15 +6713,15 @@ Checking test 208 hrrr_control_qr_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 221.233412 -The maximum resident set size (KB) = 781324 +The total amount of wall time = 219.354862 +The maximum resident set size (KB) = 784724 -Test 208 hrrr_control_qr_dyn32_phy32_gnu PASS +Test 210 hrrr_control_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_2threads_dyn32_phy32_gnu -Checking test 209 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_2threads_dyn32_phy32_gnu +Checking test 211 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6845,15 +6767,15 @@ Checking test 209 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 380.906292 -The maximum resident set size (KB) = 820700 +The total amount of wall time = 379.440010 +The maximum resident set size (KB) = 818796 -Test 209 rap_2threads_dyn32_phy32_gnu PASS +Test 211 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 212 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6899,15 +6821,15 @@ Checking test 210 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.760134 -The maximum resident set size (KB) = 805640 +The total amount of wall time = 193.821382 +The maximum resident set size (KB) = 808012 -Test 210 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 212 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 213 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6953,15 +6875,15 @@ Checking test 211 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.698397 -The maximum resident set size (KB) = 771968 +The total amount of wall time = 229.540715 +The maximum resident set size (KB) = 770692 -Test 211 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 213 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_restart_dyn32_phy32_gnu -Checking test 212 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_restart_dyn32_phy32_gnu +Checking test 214 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6999,43 +6921,43 @@ Checking test 212 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 314.596422 -The maximum resident set size (KB) = 688640 +The total amount of wall time = 313.814993 +The maximum resident set size (KB) = 682772 -Test 212 rap_restart_dyn32_phy32_gnu PASS +Test 214 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_dyn32_phy32_gnu -Checking test 213 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_dyn32_phy32_gnu +Checking test 215 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.369323 -The maximum resident set size (KB) = 646528 +The total amount of wall time = 110.798815 +The maximum resident set size (KB) = 643988 -Test 213 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 215 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 214 hrrr_control_restart_qr_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_restart_qr_dyn32_phy32_gnu +Checking test 216 hrrr_control_restart_qr_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 111.646226 -The maximum resident set size (KB) = 615388 +The total amount of wall time = 112.273249 +The maximum resident set size (KB) = 609220 -Test 214 hrrr_control_restart_qr_dyn32_phy32_gnu PASS +Test 216 hrrr_control_restart_qr_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_control_gnu -Checking test 215 conus13km_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_control_gnu +Checking test 217 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7050,41 +6972,41 @@ Checking test 215 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 141.700548 -The maximum resident set size (KB) = 980728 +The total amount of wall time = 148.546246 +The maximum resident set size (KB) = 977816 -Test 215 conus13km_control_gnu PASS +Test 217 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_2threads_gnu -Checking test 216 conus13km_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_2threads_gnu +Checking test 218 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 54.186570 -The maximum resident set size (KB) = 987316 +The total amount of wall time = 58.757599 +The maximum resident set size (KB) = 994168 -Test 216 conus13km_2threads_gnu PASS +Test 218 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_restart_mismatch_gnu -Checking test 217 conus13km_restart_mismatch_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_restart_mismatch_gnu +Checking test 219 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 81.441142 -The maximum resident set size (KB) = 643064 +The total amount of wall time = 80.680218 +The maximum resident set size (KB) = 641060 -Test 217 conus13km_restart_mismatch_gnu PASS +Test 219 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_gnu -Checking test 218 rap_control_dyn64_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_gnu +Checking test 220 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7130,99 +7052,127 @@ Checking test 218 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 248.041389 -The maximum resident set size (KB) = 793760 +The total amount of wall time = 245.473454 +The maximum resident set size (KB) = 795780 + +Test 220 rap_control_dyn64_phy32_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_debug_dyn32_phy32_gnu +Checking test 221 rap_control_debug_dyn32_phy32_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 106.380909 +The maximum resident set size (KB) = 783168 -Test 218 rap_control_dyn64_phy32_gnu PASS +Test 221 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_debug_dyn32_phy32_gnu -Checking test 219 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/hrrr_control_debug_dyn32_phy32_gnu +Checking test 222 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 104.666017 -The maximum resident set size (KB) = 782284 +The total amount of wall time = 104.402836 +The maximum resident set size (KB) = 781800 -Test 219 rap_control_debug_dyn32_phy32_gnu PASS +Test 222 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/hrrr_control_debug_dyn32_phy32_gnu -Checking test 220 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_gnu +Checking test 223 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 102.596287 -The maximum resident set size (KB) = 786280 +The total amount of wall time = 315.636703 +The maximum resident set size (KB) = 994196 -Test 220 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 223 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_gnu -Checking test 221 conus13km_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_qr_gnu +Checking test 224 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 315.161896 -The maximum resident set size (KB) = 995380 +The total amount of wall time = 319.003968 +The maximum resident set size (KB) = 665728 -Test 221 conus13km_debug_gnu PASS +Test 224 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_debug_2threads_gnu -Checking test 222 conus13km_debug_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_debug_2threads_gnu +Checking test 225 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.496169 -The maximum resident set size (KB) = 1010304 +The total amount of wall time = 186.132171 +The maximum resident set size (KB) = 999956 -Test 222 conus13km_debug_2threads_gnu PASS +Test 225 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/conus13km_radar_tten_debug_gnu -Checking test 223 conus13km_radar_tten_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/conus13km_radar_tten_debug_gnu +Checking test 226 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.933637 -The maximum resident set size (KB) = 1064956 +The total amount of wall time = 315.994922 +The maximum resident set size (KB) = 1061804 -Test 223 conus13km_radar_tten_debug_gnu PASS +Test 226 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/rap_control_dyn64_phy32_debug_gnu -Checking test 224 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/rap_control_dyn64_phy32_debug_gnu +Checking test 227 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 109.245545 -The maximum resident set size (KB) = 803912 +The total amount of wall time = 109.190099 +The maximum resident set size (KB) = 803432 -Test 224 rap_control_dyn64_phy32_debug_gnu PASS +Test 227 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_p8_gnu -Checking test 225 cpld_control_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_p8_gnu +Checking test 228 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7286,15 +7236,15 @@ Checking test 225 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 407.597472 -The maximum resident set size (KB) = 1593752 +The total amount of wall time = 407.561471 +The maximum resident set size (KB) = 1593904 -Test 225 cpld_control_p8_gnu PASS +Test 228 cpld_control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_nowave_noaero_p8_gnu -Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_nowave_noaero_p8_gnu +Checking test 229 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7355,15 +7305,15 @@ Checking test 226 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 276.402982 -The maximum resident set size (KB) = 1429220 +The total amount of wall time = 278.972073 +The maximum resident set size (KB) = 1426800 -Test 226 cpld_control_nowave_noaero_p8_gnu PASS +Test 229 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_p8_gnu -Checking test 227 cpld_debug_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_p8_gnu +Checking test 230 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7415,15 +7365,15 @@ Checking test 227 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 211.638702 -The maximum resident set size (KB) = 1605960 +The total amount of wall time = 215.441184 +The maximum resident set size (KB) = 1601804 -Test 227 cpld_debug_p8_gnu PASS +Test 230 cpld_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_control_pdlib_p8_gnu -Checking test 228 cpld_control_pdlib_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_control_pdlib_p8_gnu +Checking test 231 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7486,15 +7436,15 @@ Checking test 228 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 962.045564 -The maximum resident set size (KB) = 1403168 +The total amount of wall time = 970.560985 +The maximum resident set size (KB) = 1404432 -Test 228 cpld_control_pdlib_p8_gnu PASS +Test 231 cpld_control_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/cpld_debug_pdlib_p8_gnu -Checking test 229 cpld_debug_pdlib_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/cpld_debug_pdlib_p8_gnu +Checking test 232 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7545,25 +7495,25 @@ Checking test 229 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 522.644289 -The maximum resident set size (KB) = 1407520 +The total amount of wall time = 528.134472 +The maximum resident set size (KB) = 1402800 -Test 229 cpld_debug_pdlib_p8_gnu PASS +Test 232 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_19094/datm_cdeps_control_cfsr_gnu -Checking test 230 datm_cdeps_control_cfsr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_gnu +working dir = /work/noaa/stmp/jongkim/hercules/stmp/jongkim/FV3_RT/rt_419410/datm_cdeps_control_cfsr_gnu +Checking test 233 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.967472 -The maximum resident set size (KB) = 752760 +The total amount of wall time = 135.311162 +The maximum resident set size (KB) = 754504 -Test 230 datm_cdeps_control_cfsr_gnu PASS +Test 233 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 28 09:20:09 AM CDT 2023 -Elapsed time: 01h:17m:32s. Have a nice day! +Mon Oct 2 17:32:23 CDT 2023 +Elapsed time: 01h:13m:35s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 181be6319e..a4c3d246a2 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,53 +1,53 @@ -Thu Sep 28 05:53:03 UTC 2023 +Mon Oct 2 15:40:56 UTC 2023 Start Regression test -Testing UFSWM Hash: 5bec6063795438c3a8bfddee98bf0930b6694e44 +Testing UFSWM Hash: 04c3a5f8819e1116dbe4367e936cf089a0f3c2da Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 315 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1894 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1823 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1773 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1747 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1848 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2484 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 252 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1836 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 290 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1993 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 310 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5471 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2069 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_mixedmode_intel + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 354 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1944 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1742 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1801 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1784 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1785 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 176 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 318 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 314 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 133 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1836 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1871 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2529 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1885 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1859 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1894 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 301 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1996 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1978 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 329 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5543 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2077 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +112,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 591.758791 - 0: The maximum resident set size (KB) = 1738432 + 0: The total amount of wall time = 532.635778 + 0: The maximum resident set size (KB) = 1775508 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +183,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.227310 - 0: The maximum resident set size (KB) = 1606228 + 0: The total amount of wall time = 329.930932 + 0: The maximum resident set size (KB) = 1612192 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -255,14 +255,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 562.196086 - 0: The maximum resident set size (KB) = 1787744 + 0: The total amount of wall time = 550.948834 + 0: The maximum resident set size (KB) = 1825624 Test 003 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -315,14 +315,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.487793 - 0: The maximum resident set size (KB) = 1689552 + 0: The total amount of wall time = 337.595563 + 0: The maximum resident set size (KB) = 1703880 Test 004 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -387,14 +387,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.639741 - 0: The maximum resident set size (KB) = 1813220 + 0: The total amount of wall time = 572.646675 + 0: The maximum resident set size (KB) = 1831508 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.014648 - 0: The maximum resident set size (KB) = 1519448 + 0: The total amount of wall time = 373.252339 + 0: The maximum resident set size (KB) = 1542472 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.501513 - 0: The maximum resident set size (KB) = 2167128 + 0: The total amount of wall time = 556.260814 + 0: The maximum resident set size (KB) = 2169628 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -567,14 +567,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.098479 - 0: The maximum resident set size (KB) = 1809396 + 0: The total amount of wall time = 539.283959 + 0: The maximum resident set size (KB) = 1809504 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 422.892240 - 0: The maximum resident set size (KB) = 1741236 + 0: The total amount of wall time = 505.316880 + 0: The maximum resident set size (KB) = 1756564 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -699,14 +699,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 497.270859 - 0: The maximum resident set size (KB) = 1802856 + 0: The total amount of wall time = 539.373688 + 0: The maximum resident set size (KB) = 1806024 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_noaero_p8_intel Checking test 011 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -770,14 +770,14 @@ Checking test 011 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.803045 - 0: The maximum resident set size (KB) = 1635448 + 0: The total amount of wall time = 430.304990 + 0: The maximum resident set size (KB) = 1637016 Test 011 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_nowave_noaero_p8_intel Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -839,14 +839,14 @@ Checking test 012 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 369.963114 - 0: The maximum resident set size (KB) = 1686268 + 0: The total amount of wall time = 436.879099 + 0: The maximum resident set size (KB) = 1684628 Test 012 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_debug_p8_intel Checking test 013 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -899,14 +899,14 @@ Checking test 013 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 702.406593 - 0: The maximum resident set size (KB) = 1809184 + 0: The total amount of wall time = 749.944682 + 0: The maximum resident set size (KB) = 1815956 Test 013 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_debug_noaero_p8_intel Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.145907 - 0: The maximum resident set size (KB) = 1668028 + 0: The total amount of wall time = 480.312882 + 0: The maximum resident set size (KB) = 1661820 Test 014 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 395.630346 - 0: The maximum resident set size (KB) = 1682856 + 0: The total amount of wall time = 435.662713 + 0: The maximum resident set size (KB) = 1687760 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1084,14 +1084,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 802.314427 - 0: The maximum resident set size (KB) = 2778864 + 0: The total amount of wall time = 800.591919 + 0: The maximum resident set size (KB) = 2795772 Test 016 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.824540 - 0: The maximum resident set size (KB) = 1800624 + 0: The total amount of wall time = 548.057295 + 0: The maximum resident set size (KB) = 1797512 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_flake_intel Checking test 018 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 018 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 386.691053 - 0: The maximum resident set size (KB) = 637700 + 0: The total amount of wall time = 295.879111 + 0: The maximum resident set size (KB) = 638012 Test 018 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_CubedSphereGrid_intel Checking test 019 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 019 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 226.931651 - 0: The maximum resident set size (KB) = 583636 + 0: The total amount of wall time = 222.617539 + 0: The maximum resident set size (KB) = 586540 Test 019 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_CubedSphereGrid_parallel_intel Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1224,20 +1224,20 @@ Checking test 020 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.170146 - 0: The maximum resident set size (KB) = 586080 + 0: The total amount of wall time = 238.401234 + 0: The maximum resident set size (KB) = 585744 Test 020 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_latlon_intel Checking test 021 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1248,16 +1248,16 @@ Checking test 021 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.076560 - 0: The maximum resident set size (KB) = 584228 + 0: The total amount of wall time = 218.854307 + 0: The maximum resident set size (KB) = 559404 Test 021 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_wrtGauss_netcdf_parallel_intel Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1266,14 +1266,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.159746 - 0: The maximum resident set size (KB) = 587292 + 0: The total amount of wall time = 220.934635 + 0: The maximum resident set size (KB) = 587352 Test 022 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_c48_intel Checking test 023 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,14 +1312,14 @@ Checking test 023 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 599.829040 -0: The maximum resident set size (KB) = 807428 +0: The total amount of wall time = 595.939160 +0: The maximum resident set size (KB) = 806872 Test 023 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_c192_intel Checking test 024 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,14 +1330,14 @@ Checking test 024 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 782.735142 - 0: The maximum resident set size (KB) = 703088 + 0: The total amount of wall time = 790.855835 + 0: The maximum resident set size (KB) = 705824 Test 024 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_c384_intel Checking test 025 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1348,14 +1348,14 @@ Checking test 025 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1014.471976 - 0: The maximum resident set size (KB) = 1169136 + 0: The total amount of wall time = 1011.120659 + 0: The maximum resident set size (KB) = 1159988 Test 025 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_c384gdas_intel Checking test 026 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 026 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 868.559612 - 0: The maximum resident set size (KB) = 1295156 + 0: The total amount of wall time = 908.572639 + 0: The maximum resident set size (KB) = 1293184 Test 026 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_stochy_intel Checking test 027 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1416,28 +1416,28 @@ Checking test 027 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.439480 - 0: The maximum resident set size (KB) = 589784 + 0: The total amount of wall time = 146.759371 + 0: The maximum resident set size (KB) = 589948 Test 027 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_stochy_restart_intel Checking test 028 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.840916 - 0: The maximum resident set size (KB) = 467572 + 0: The total amount of wall time = 93.699863 + 0: The maximum resident set size (KB) = 468684 Test 028 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_lndp_intel Checking test 029 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1448,14 +1448,14 @@ Checking test 029 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.180022 - 0: The maximum resident set size (KB) = 596064 + 0: The total amount of wall time = 134.071929 + 0: The maximum resident set size (KB) = 586948 Test 029 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_iovr4_intel Checking test 030 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1470,14 @@ Checking test 030 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 232.742173 - 0: The maximum resident set size (KB) = 585444 + 0: The total amount of wall time = 237.245609 + 0: The maximum resident set size (KB) = 580752 Test 030 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_iovr5_intel Checking test 031 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1492,14 +1492,14 @@ Checking test 031 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.890669 - 0: The maximum resident set size (KB) = 583660 + 0: The total amount of wall time = 240.407820 + 0: The maximum resident set size (KB) = 562372 Test 031 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_intel Checking test 032 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1546,14 +1546,14 @@ Checking test 032 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.971662 - 0: The maximum resident set size (KB) = 1548116 + 0: The total amount of wall time = 271.334477 + 0: The maximum resident set size (KB) = 1548592 Test 032 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_restart_p8_intel Checking test 033 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 033 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 131.681929 - 0: The maximum resident set size (KB) = 834084 + 0: The total amount of wall time = 137.669307 + 0: The maximum resident set size (KB) = 812492 Test 033 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_qr_p8_intel Checking test 034 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1646,14 +1646,14 @@ Checking test 034 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 239.996411 - 0: The maximum resident set size (KB) = 1559472 + 0: The total amount of wall time = 285.413645 + 0: The maximum resident set size (KB) = 1568092 Test 034 control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_restart_qr_p8_intel Checking test 035 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1692,14 +1692,14 @@ Checking test 035 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.809103 - 0: The maximum resident set size (KB) = 800820 + 0: The total amount of wall time = 140.160168 + 0: The maximum resident set size (KB) = 795992 Test 035 control_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_decomp_p8_intel Checking test 036 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.521441 - 0: The maximum resident set size (KB) = 1542092 + 0: The total amount of wall time = 274.390111 + 0: The maximum resident set size (KB) = 1544808 Test 036 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_2threads_p8_intel Checking test 037 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,14 +1792,14 @@ Checking test 037 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.316348 - 0: The maximum resident set size (KB) = 1635244 + 0: The total amount of wall time = 252.676026 + 0: The maximum resident set size (KB) = 1625212 Test 037 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_lndp_intel Checking test 038 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 038 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 438.747862 - 0: The maximum resident set size (KB) = 1551804 + 0: The total amount of wall time = 501.410639 + 0: The maximum resident set size (KB) = 1549020 Test 038 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_rrtmgp_intel Checking test 039 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 039 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.025960 - 0: The maximum resident set size (KB) = 1611632 + 0: The total amount of wall time = 341.773050 + 0: The maximum resident set size (KB) = 1590028 Test 039 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_mynn_intel Checking test 040 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.107694 - 0: The maximum resident set size (KB) = 1552460 + 0: The total amount of wall time = 263.265589 + 0: The maximum resident set size (KB) = 1551180 Test 040 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/merra2_thompson_intel Checking test 041 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 041 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.717286 - 0: The maximum resident set size (KB) = 1564084 + 0: The total amount of wall time = 334.440745 + 0: The maximum resident set size (KB) = 1560888 Test 041 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_control_intel Checking test 042 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1998,28 +1998,28 @@ Checking test 042 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 469.205777 - 0: The maximum resident set size (KB) = 994932 + 0: The total amount of wall time = 547.866541 + 0: The maximum resident set size (KB) = 994952 Test 042 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_restart_intel Checking test 043 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 228.576812 - 0: The maximum resident set size (KB) = 993168 + 0: The total amount of wall time = 253.154531 + 0: The maximum resident set size (KB) = 990164 Test 043 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_control_qr_intel Checking test 044 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2030,28 +2030,28 @@ Checking test 044 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 483.048891 - 0: The maximum resident set size (KB) = 999284 + 0: The total amount of wall time = 455.199742 + 0: The maximum resident set size (KB) = 999356 Test 044 regional_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_restart_qr_intel Checking test 045 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.960561 - 0: The maximum resident set size (KB) = 984840 + 0: The total amount of wall time = 245.971300 + 0: The maximum resident set size (KB) = 986220 Test 045 regional_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_decomp_intel Checking test 046 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 046 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 459.307345 - 0: The maximum resident set size (KB) = 990664 + 0: The total amount of wall time = 501.811747 + 0: The maximum resident set size (KB) = 986784 Test 046 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_2threads_intel Checking test 047 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2080,28 +2080,28 @@ Checking test 047 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.700915 - 0: The maximum resident set size (KB) = 978116 + 0: The total amount of wall time = 346.114855 + 0: The maximum resident set size (KB) = 975976 Test 047 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_netcdf_parallel_intel Checking test 048 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 442.882323 - 0: The maximum resident set size (KB) = 990180 + 0: The total amount of wall time = 476.464388 + 0: The maximum resident set size (KB) = 984944 Test 048 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_2dwrtdecomp_intel Checking test 049 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 409.701432 - 0: The maximum resident set size (KB) = 996092 + 0: The total amount of wall time = 474.578961 + 0: The maximum resident set size (KB) = 994192 Test 049 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_intel Checking test 050 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 050 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.083756 - 0: The maximum resident set size (KB) = 1076576 + 0: The total amount of wall time = 658.761100 + 0: The maximum resident set size (KB) = 1073380 Test 050 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_spp_sppt_shum_skeb_intel Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 326.893876 - 0: The maximum resident set size (KB) = 1116036 + 0: The total amount of wall time = 362.372473 + 0: The maximum resident set size (KB) = 1110176 Test 051 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_decomp_intel Checking test 052 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.946530 - 0: The maximum resident set size (KB) = 1041028 + 0: The total amount of wall time = 663.691678 + 0: The maximum resident set size (KB) = 1026932 Test 052 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_2threads_intel Checking test 053 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2292,14 +2292,14 @@ Checking test 053 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 604.873894 - 0: The maximum resident set size (KB) = 1154668 + 0: The total amount of wall time = 595.828540 + 0: The maximum resident set size (KB) = 1147652 Test 053 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_restart_intel Checking test 054 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.807560 - 0: The maximum resident set size (KB) = 1001532 + 0: The total amount of wall time = 324.677095 + 0: The maximum resident set size (KB) = 1006180 Test 054 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_sfcdiff_intel Checking test 055 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 646.223218 - 0: The maximum resident set size (KB) = 1074940 + 0: The total amount of wall time = 624.640164 + 0: The maximum resident set size (KB) = 1070968 Test 055 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_sfcdiff_decomp_intel Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 684.797397 - 0: The maximum resident set size (KB) = 1034740 + 0: The total amount of wall time = 659.958512 + 0: The maximum resident set size (KB) = 1039500 Test 056 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_sfcdiff_restart_intel Checking test 057 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.215354 - 0: The maximum resident set size (KB) = 1015284 + 0: The total amount of wall time = 498.835026 + 0: The maximum resident set size (KB) = 1026068 Test 057 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_intel Checking test 058 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.275061 - 0: The maximum resident set size (KB) = 1025152 + 0: The total amount of wall time = 328.367170 + 0: The maximum resident set size (KB) = 1026764 Test 058 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_qr_intel Checking test 059 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 588.372410 - 0: The maximum resident set size (KB) = 963124 + 0: The total amount of wall time = 322.027553 + 0: The maximum resident set size (KB) = 975148 Test 059 hrrr_control_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_decomp_intel Checking test 060 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 060 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 630.477743 - 0: The maximum resident set size (KB) = 979244 + 0: The total amount of wall time = 337.399501 + 0: The maximum resident set size (KB) = 975756 Test 060 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_2threads_intel Checking test 061 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2708,42 +2708,42 @@ Checking test 061 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 581.514646 - 0: The maximum resident set size (KB) = 1025848 + 0: The total amount of wall time = 311.141746 + 0: The maximum resident set size (KB) = 1025796 Test 061 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_restart_intel Checking test 062 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 447.516306 - 0: The maximum resident set size (KB) = 964200 + 0: The total amount of wall time = 168.475200 + 0: The maximum resident set size (KB) = 935848 Test 062 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_restart_qr_intel Checking test 063 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 498.766620 - 0: The maximum resident set size (KB) = 881764 + 0: The total amount of wall time = 167.947515 + 0: The maximum resident set size (KB) = 814936 Test 063 hrrr_control_restart_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rrfs_v1beta_intel Checking test 064 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 064 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.898588 - 0: The maximum resident set size (KB) = 1047784 + 0: The total amount of wall time = 630.118801 + 0: The maximum resident set size (KB) = 1018868 Test 064 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rrfs_v1nssl_intel Checking test 065 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 749.085835 - 0: The maximum resident set size (KB) = 674780 + 0: The total amount of wall time = 761.559601 + 0: The maximum resident set size (KB) = 677144 Test 065 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rrfs_v1nssl_nohailnoccn_intel Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,123 +2834,15 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 723.181120 - 0: The maximum resident set size (KB) = 741120 + 0: The total amount of wall time = 762.869462 + 0: The maximum resident set size (KB) = 739980 Test 066 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_gf_intel -Checking test 067 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 638.835370 - 0: The maximum resident set size (KB) = 1067380 - -Test 067 hrrr_gf_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_c3_intel -Checking test 068 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 638.030572 - 0: The maximum resident set size (KB) = 1064780 - -Test 068 hrrr_c3_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmg_intel -Checking test 069 control_csawmg_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_csawmg_intel +Checking test 067 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2960,15 +2852,15 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.405689 - 0: The maximum resident set size (KB) = 681972 + 0: The total amount of wall time = 528.195015 + 0: The maximum resident set size (KB) = 688736 -Test 069 control_csawmg_intel PASS +Test 067 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmgt_intel -Checking test 070 control_csawmgt_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_csawmgt_intel +Checking test 068 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2978,15 +2870,15 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.606918 - 0: The maximum resident set size (KB) = 691060 + 0: The total amount of wall time = 505.835512 + 0: The maximum resident set size (KB) = 694716 -Test 070 control_csawmgt_intel PASS +Test 068 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_ras_intel -Checking test 071 control_ras_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_ras_intel +Checking test 069 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2996,27 +2888,27 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.828814 - 0: The maximum resident set size (KB) = 677916 + 0: The total amount of wall time = 312.530764 + 0: The maximum resident set size (KB) = 668148 -Test 071 control_ras_intel PASS +Test 069 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wam_intel -Checking test 072 control_wam_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_wam_intel +Checking test 070 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 201.902285 - 0: The maximum resident set size (KB) = 545620 + 0: The total amount of wall time = 182.492955 + 0: The maximum resident set size (KB) = 548644 -Test 072 control_wam_intel PASS +Test 070 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_faster_intel -Checking test 073 control_p8_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_faster_intel +Checking test 071 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3062,15 +2954,15 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.194920 - 0: The maximum resident set size (KB) = 1550804 + 0: The total amount of wall time = 241.857836 + 0: The maximum resident set size (KB) = 1552828 -Test 073 control_p8_faster_intel PASS +Test 071 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_control_faster_intel -Checking test 074 regional_control_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_control_faster_intel +Checking test 072 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3080,15 +2972,15 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 436.591498 - 0: The maximum resident set size (KB) = 990440 + 0: The total amount of wall time = 435.463617 + 0: The maximum resident set size (KB) = 991460 -Test 074 regional_control_faster_intel PASS +Test 072 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_CubedSphereGrid_debug_intel -Checking test 075 control_CubedSphereGrid_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_CubedSphereGrid_debug_intel +Checking test 073 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3114,348 +3006,376 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 211.821766 - 0: The maximum resident set size (KB) = 745752 + 0: The total amount of wall time = 220.104149 + 0: The maximum resident set size (KB) = 742884 -Test 075 control_CubedSphereGrid_debug_intel PASS +Test 073 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 074 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.764852 - 0: The maximum resident set size (KB) = 743584 + 0: The total amount of wall time = 209.417449 + 0: The maximum resident set size (KB) = 740868 -Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 074 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_stochy_debug_intel -Checking test 077 control_stochy_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_stochy_debug_intel +Checking test 075 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.092563 - 0: The maximum resident set size (KB) = 743624 + 0: The total amount of wall time = 218.990321 + 0: The maximum resident set size (KB) = 744440 -Test 077 control_stochy_debug_intel PASS +Test 075 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_lndp_debug_intel -Checking test 078 control_lndp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_lndp_debug_intel +Checking test 076 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.771999 - 0: The maximum resident set size (KB) = 745564 + 0: The total amount of wall time = 205.328107 + 0: The maximum resident set size (KB) = 745864 -Test 078 control_lndp_debug_intel PASS +Test 076 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmg_debug_intel -Checking test 079 control_csawmg_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_csawmg_debug_intel +Checking test 077 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.924284 - 0: The maximum resident set size (KB) = 785232 + 0: The total amount of wall time = 323.848593 + 0: The maximum resident set size (KB) = 786348 -Test 079 control_csawmg_debug_intel PASS +Test 077 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_csawmgt_debug_intel -Checking test 080 control_csawmgt_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_csawmgt_debug_intel +Checking test 078 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.153359 - 0: The maximum resident set size (KB) = 787304 + 0: The total amount of wall time = 312.179648 + 0: The maximum resident set size (KB) = 783372 -Test 080 control_csawmgt_debug_intel PASS +Test 078 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_ras_debug_intel -Checking test 081 control_ras_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_ras_debug_intel +Checking test 079 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.074819 - 0: The maximum resident set size (KB) = 753528 + 0: The total amount of wall time = 215.347935 + 0: The maximum resident set size (KB) = 753340 -Test 081 control_ras_debug_intel PASS +Test 079 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_diag_debug_intel -Checking test 082 control_diag_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_diag_debug_intel +Checking test 080 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.584617 - 0: The maximum resident set size (KB) = 793008 + 0: The total amount of wall time = 222.483376 + 0: The maximum resident set size (KB) = 797308 -Test 082 control_diag_debug_intel PASS +Test 080 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_debug_p8_intel -Checking test 083 control_debug_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_debug_p8_intel +Checking test 081 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.560297 - 0: The maximum resident set size (KB) = 1566792 + 0: The total amount of wall time = 238.244146 + 0: The maximum resident set size (KB) = 1565996 -Test 083 control_debug_p8_intel PASS +Test 081 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_debug_intel -Checking test 084 regional_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_debug_intel +Checking test 082 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1370.448670 - 0: The maximum resident set size (KB) = 1014800 + 0: The total amount of wall time = 1303.937535 + 0: The maximum resident set size (KB) = 1006616 -Test 084 regional_debug_intel PASS +Test 082 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_debug_intel -Checking test 085 rap_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_debug_intel +Checking test 083 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.972664 - 0: The maximum resident set size (KB) = 1126124 + 0: The total amount of wall time = 358.022137 + 0: The maximum resident set size (KB) = 1122108 -Test 085 rap_control_debug_intel PASS +Test 083 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_debug_intel -Checking test 086 hrrr_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_debug_intel +Checking test 084 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.517505 - 0: The maximum resident set size (KB) = 1118992 + 0: The total amount of wall time = 363.838266 + 0: The maximum resident set size (KB) = 1118772 -Test 086 hrrr_control_debug_intel PASS +Test 084 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_gf_debug_intel +Checking test 085 hrrr_gf_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 393.173348 + 0: The maximum resident set size (KB) = 1124228 + +Test 085 hrrr_gf_debug_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_c3_debug_intel +Checking test 086 hrrr_c3_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 378.443163 + 0: The maximum resident set size (KB) = 1115572 + +Test 086 hrrr_c3_debug_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_unified_drag_suite_debug_intel Checking test 087 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.562975 - 0: The maximum resident set size (KB) = 1127456 + 0: The total amount of wall time = 387.969823 + 0: The maximum resident set size (KB) = 1127960 Test 087 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_diag_debug_intel Checking test 088 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.943369 - 0: The maximum resident set size (KB) = 1194856 + 0: The total amount of wall time = 387.794182 + 0: The maximum resident set size (KB) = 1203144 Test 088 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_cires_ugwp_debug_intel Checking test 089 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.604969 - 0: The maximum resident set size (KB) = 1127728 + 0: The total amount of wall time = 373.185346 + 0: The maximum resident set size (KB) = 1116096 Test 089 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_unified_ugwp_debug_intel Checking test 090 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.695781 - 0: The maximum resident set size (KB) = 1121596 + 0: The total amount of wall time = 378.839901 + 0: The maximum resident set size (KB) = 1130336 Test 090 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_lndp_debug_intel Checking test 091 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.429872 - 0: The maximum resident set size (KB) = 1118580 + 0: The total amount of wall time = 370.603274 + 0: The maximum resident set size (KB) = 1135112 Test 091 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_progcld_thompson_debug_intel Checking test 092 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.833005 - 0: The maximum resident set size (KB) = 1123840 + 0: The total amount of wall time = 367.195928 + 0: The maximum resident set size (KB) = 1127460 Test 092 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_noah_debug_intel Checking test 093 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.124566 - 0: The maximum resident set size (KB) = 1122712 + 0: The total amount of wall time = 366.458549 + 0: The maximum resident set size (KB) = 1121152 Test 093 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_sfcdiff_debug_intel Checking test 094 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.388116 - 0: The maximum resident set size (KB) = 1119104 + 0: The total amount of wall time = 381.409317 + 0: The maximum resident set size (KB) = 1121936 Test 094 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 598.749688 - 0: The maximum resident set size (KB) = 1126008 + 0: The total amount of wall time = 614.962477 + 0: The maximum resident set size (KB) = 1104788 Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rrfs_v1beta_debug_intel Checking test 096 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.127338 - 0: The maximum resident set size (KB) = 1125780 + 0: The total amount of wall time = 367.106300 + 0: The maximum resident set size (KB) = 1113204 Test 096 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_clm_lake_debug_intel Checking test 097 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 435.891144 - 0: The maximum resident set size (KB) = 1120880 + 0: The total amount of wall time = 458.365664 + 0: The maximum resident set size (KB) = 1118252 Test 097 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_flake_debug_intel Checking test 098 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.456898 - 0: The maximum resident set size (KB) = 1119096 + 0: The total amount of wall time = 370.743351 + 0: The maximum resident set size (KB) = 1130408 Test 098 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_wam_debug_intel Checking test 099 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 359.285946 - 0: The maximum resident set size (KB) = 498184 + 0: The total amount of wall time = 385.316076 + 0: The maximum resident set size (KB) = 506436 Test 099 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3466,14 +3386,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 313.364730 - 0: The maximum resident set size (KB) = 1019212 + 0: The total amount of wall time = 331.155621 + 0: The maximum resident set size (KB) = 1009924 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_dyn32_phy32_intel Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3440,14 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 552.630169 - 0: The maximum resident set size (KB) = 944660 + 0: The total amount of wall time = 550.858892 + 0: The maximum resident set size (KB) = 946644 Test 101 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_dyn32_phy32_intel Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3494,14 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.083333 - 0: The maximum resident set size (KB) = 904480 + 0: The total amount of wall time = 272.230151 + 0: The maximum resident set size (KB) = 900616 Test 102 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_qr_dyn32_phy32_intel Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3628,14 +3548,14 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.691529 - 0: The maximum resident set size (KB) = 860220 + 0: The total amount of wall time = 284.354138 + 0: The maximum resident set size (KB) = 858228 Test 103 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_2threads_dyn32_phy32_intel Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3682,14 +3602,14 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.167231 - 0: The maximum resident set size (KB) = 967948 + 0: The total amount of wall time = 507.140231 + 0: The maximum resident set size (KB) = 966432 Test 104 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_2threads_dyn32_phy32_intel Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3736,14 +3656,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.746081 - 0: The maximum resident set size (KB) = 878076 + 0: The total amount of wall time = 285.229152 + 0: The maximum resident set size (KB) = 892616 Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_decomp_dyn32_phy32_intel Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3790,14 +3710,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.668281 - 0: The maximum resident set size (KB) = 866012 + 0: The total amount of wall time = 297.473087 + 0: The maximum resident set size (KB) = 864980 Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_restart_dyn32_phy32_intel Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3836,42 +3756,42 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.531505 - 0: The maximum resident set size (KB) = 912396 + 0: The total amount of wall time = 404.778372 + 0: The maximum resident set size (KB) = 913160 Test 107 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_restart_dyn32_phy32_intel Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.082516 - 0: The maximum resident set size (KB) = 827628 + 0: The total amount of wall time = 144.251128 + 0: The maximum resident set size (KB) = 826648 Test 108 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.695993 - 0: The maximum resident set size (KB) = 791984 + 0: The total amount of wall time = 151.829156 + 0: The maximum resident set size (KB) = 791488 Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_control_intel Checking test 110 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3887,40 +3807,40 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 166.888921 - 0: The maximum resident set size (KB) = 1143160 + 0: The total amount of wall time = 183.721018 + 0: The maximum resident set size (KB) = 1147672 Test 110 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_2threads_intel Checking test 111 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 71.120267 - 0: The maximum resident set size (KB) = 1091484 + 0: The total amount of wall time = 82.217745 + 0: The maximum resident set size (KB) = 1088968 Test 111 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_restart_mismatch_intel Checking test 112 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.957962 - 0: The maximum resident set size (KB) = 1089220 + 0: The total amount of wall time = 102.362597 + 0: The maximum resident set size (KB) = 1088988 Test 112 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_dyn64_phy32_intel Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3967,124 +3887,152 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.665104 - 0: The maximum resident set size (KB) = 974680 + 0: The total amount of wall time = 348.357789 + 0: The maximum resident set size (KB) = 967604 Test 113 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_debug_dyn32_phy32_intel Checking test 114 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.871527 - 0: The maximum resident set size (KB) = 1011432 + 0: The total amount of wall time = 359.773494 + 0: The maximum resident set size (KB) = 1014964 Test 114 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hrrr_control_debug_dyn32_phy32_intel Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.269834 - 0: The maximum resident set size (KB) = 1008048 + 0: The total amount of wall time = 354.083357 + 0: The maximum resident set size (KB) = 1006220 Test 115 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_debug_intel Checking test 116 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1077.845544 - 0: The maximum resident set size (KB) = 1177904 + 0: The total amount of wall time = 1128.536030 + 0: The maximum resident set size (KB) = 1176260 Test 116 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_debug_2threads_intel -Checking test 117 conus13km_debug_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_debug_qr_intel +Checking test 117 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 1139.924769 + 0: The maximum resident set size (KB) = 841232 + +Test 117 conus13km_debug_qr_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_debug_2threads_intel +Checking test 118 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 677.684647 - 0: The maximum resident set size (KB) = 1120148 + 0: The total amount of wall time = 637.511410 + 0: The maximum resident set size (KB) = 1123340 -Test 117 conus13km_debug_2threads_intel PASS +Test 118 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/conus13km_radar_tten_debug_intel -Checking test 118 conus13km_radar_tten_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/conus13km_radar_tten_debug_intel +Checking test 119 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1081.923825 - 0: The maximum resident set size (KB) = 1244268 + 0: The total amount of wall time = 1110.966105 + 0: The maximum resident set size (KB) = 1244960 -Test 118 conus13km_radar_tten_debug_intel PASS +Test 119 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/rap_control_dyn64_phy32_debug_intel -Checking test 119 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/rap_control_dyn64_phy32_debug_intel +Checking test 120 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.154347 - 0: The maximum resident set size (KB) = 1035700 + 0: The total amount of wall time = 389.210816 + 0: The maximum resident set size (KB) = 1031608 -Test 119 rap_control_dyn64_phy32_debug_intel PASS +Test 120 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_intel -Checking test 120 hafs_regional_atm_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_atm_intel +Checking test 121 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 382.801385 - 0: The maximum resident set size (KB) = 1388016 + 0: The total amount of wall time = 373.973986 + 0: The maximum resident set size (KB) = 1391428 -Test 120 hafs_regional_atm_intel PASS +Test 121 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 450.223294 - 0: The maximum resident set size (KB) = 1701044 + 0: The total amount of wall time = 554.022160 + 0: The maximum resident set size (KB) = 1723616 -Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_ocn_intel -Checking test 122 hafs_regional_atm_ocn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_atm_ocn_intel +Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4092,15 +4040,15 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 516.186156 - 0: The maximum resident set size (KB) = 1432172 + 0: The total amount of wall time = 678.433800 + 0: The maximum resident set size (KB) = 1471872 -Test 122 hafs_regional_atm_ocn_intel PASS +Test 123 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_wav_intel -Checking test 123 hafs_regional_atm_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_atm_wav_intel +Checking test 124 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4108,15 +4056,15 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 935.524956 - 0: The maximum resident set size (KB) = 1417924 + 0: The total amount of wall time = 997.098121 + 0: The maximum resident set size (KB) = 1442928 -Test 123 hafs_regional_atm_wav_intel PASS +Test 124 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_atm_ocn_wav_intel -Checking test 124 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_atm_ocn_wav_intel +Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4126,149 +4074,149 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1052.319797 - 0: The maximum resident set size (KB) = 1502512 + 0: The total amount of wall time = 1087.410320 + 0: The maximum resident set size (KB) = 1510184 -Test 124 hafs_regional_atm_ocn_wav_intel PASS +Test 125 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_docn_intel -Checking test 125 hafs_regional_docn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_docn_intel +Checking test 126 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 482.137365 - 0: The maximum resident set size (KB) = 1427156 + 0: The total amount of wall time = 514.826243 + 0: The maximum resident set size (KB) = 1464512 -Test 125 hafs_regional_docn_intel PASS +Test 126 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/hafs_regional_docn_oisst_intel -Checking test 126 hafs_regional_docn_oisst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/hafs_regional_docn_oisst_intel +Checking test 127 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 473.963583 - 0: The maximum resident set size (KB) = 1441532 + 0: The total amount of wall time = 517.288112 + 0: The maximum resident set size (KB) = 1429964 -Test 126 hafs_regional_docn_oisst_intel PASS +Test 127 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_cfsr_intel -Checking test 127 datm_cdeps_control_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_control_cfsr_intel +Checking test 128 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.378137 - 0: The maximum resident set size (KB) = 1025092 + 0: The total amount of wall time = 217.122558 + 0: The maximum resident set size (KB) = 1024596 -Test 127 datm_cdeps_control_cfsr_intel PASS +Test 128 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_restart_cfsr_intel -Checking test 128 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_restart_cfsr_intel +Checking test 129 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.129514 - 0: The maximum resident set size (KB) = 993396 + 0: The total amount of wall time = 128.516705 + 0: The maximum resident set size (KB) = 995336 -Test 128 datm_cdeps_restart_cfsr_intel PASS +Test 129 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_gefs_intel -Checking test 129 datm_cdeps_control_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_control_gefs_intel +Checking test 130 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 186.663316 - 0: The maximum resident set size (KB) = 906428 + 0: The total amount of wall time = 211.578365 + 0: The maximum resident set size (KB) = 899484 -Test 129 datm_cdeps_control_gefs_intel PASS +Test 130 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_iau_gefs_intel -Checking test 130 datm_cdeps_iau_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_iau_gefs_intel +Checking test 131 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.960118 - 0: The maximum resident set size (KB) = 902308 + 0: The total amount of wall time = 222.987030 + 0: The maximum resident set size (KB) = 901076 -Test 130 datm_cdeps_iau_gefs_intel PASS +Test 131 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_stochy_gefs_intel -Checking test 131 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_stochy_gefs_intel +Checking test 132 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.123006 - 0: The maximum resident set size (KB) = 900700 + 0: The total amount of wall time = 214.576073 + 0: The maximum resident set size (KB) = 902660 -Test 131 datm_cdeps_stochy_gefs_intel PASS +Test 132 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_ciceC_cfsr_intel -Checking test 132 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_ciceC_cfsr_intel +Checking test 133 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.147664 - 0: The maximum resident set size (KB) = 1042880 + 0: The total amount of wall time = 217.471009 + 0: The maximum resident set size (KB) = 1028308 -Test 132 datm_cdeps_ciceC_cfsr_intel PASS +Test 133 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_bulk_cfsr_intel -Checking test 133 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_bulk_cfsr_intel +Checking test 134 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.265330 - 0: The maximum resident set size (KB) = 1023260 + 0: The total amount of wall time = 226.930109 + 0: The maximum resident set size (KB) = 1010540 -Test 133 datm_cdeps_bulk_cfsr_intel PASS +Test 134 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_bulk_gefs_intel -Checking test 134 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_bulk_gefs_intel +Checking test 135 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.101316 - 0: The maximum resident set size (KB) = 903408 + 0: The total amount of wall time = 206.685669 + 0: The maximum resident set size (KB) = 902300 -Test 134 datm_cdeps_bulk_gefs_intel PASS +Test 135 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_mx025_cfsr_intel -Checking test 135 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_mx025_cfsr_intel +Checking test 136 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4276,15 +4224,15 @@ Checking test 135 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 537.912842 - 0: The maximum resident set size (KB) = 850244 + 0: The total amount of wall time = 553.531623 + 0: The maximum resident set size (KB) = 852208 -Test 135 datm_cdeps_mx025_cfsr_intel PASS +Test 136 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_mx025_gefs_intel -Checking test 136 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_mx025_gefs_intel +Checking test 137 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4292,78 +4240,78 @@ Checking test 136 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 539.000500 - 0: The maximum resident set size (KB) = 809388 + 0: The total amount of wall time = 544.979048 + 0: The maximum resident set size (KB) = 807048 -Test 136 datm_cdeps_mx025_gefs_intel PASS +Test 137 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_multiple_files_cfsr_intel -Checking test 137 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_multiple_files_cfsr_intel +Checking test 138 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 227.191985 - 0: The maximum resident set size (KB) = 1024768 + 0: The total amount of wall time = 210.324494 + 0: The maximum resident set size (KB) = 1028596 -Test 137 datm_cdeps_multiple_files_cfsr_intel PASS +Test 138 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_3072x1536_cfsr_intel -Checking test 138 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_3072x1536_cfsr_intel +Checking test 139 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 325.215872 - 0: The maximum resident set size (KB) = 2364340 + 0: The total amount of wall time = 325.746395 + 0: The maximum resident set size (KB) = 2295564 -Test 138 datm_cdeps_3072x1536_cfsr_intel PASS +Test 139 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_gfs_intel -Checking test 139 datm_cdeps_gfs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_gfs_intel +Checking test 140 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 340.026439 - 0: The maximum resident set size (KB) = 2364692 + 0: The total amount of wall time = 325.225849 + 0: The maximum resident set size (KB) = 2368264 -Test 139 datm_cdeps_gfs_intel PASS +Test 140 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_debug_cfsr_intel -Checking test 140 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_debug_cfsr_intel +Checking test 141 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 463.600017 - 0: The maximum resident set size (KB) = 983420 + 0: The total amount of wall time = 473.753313 + 0: The maximum resident set size (KB) = 972200 -Test 140 datm_cdeps_debug_cfsr_intel PASS +Test 141 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_control_cfsr_faster_intel -Checking test 141 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_control_cfsr_faster_intel +Checking test 142 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.442008 - 0: The maximum resident set size (KB) = 1022468 + 0: The total amount of wall time = 208.920642 + 0: The maximum resident set size (KB) = 1027440 -Test 141 datm_cdeps_control_cfsr_faster_intel PASS +Test 142 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_lnd_gswp3_intel -Checking test 142 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_lnd_gswp3_intel +Checking test 143 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4371,15 +4319,15 @@ Checking test 142 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.365798 - 0: The maximum resident set size (KB) = 221396 + 0: The total amount of wall time = 14.518152 + 0: The maximum resident set size (KB) = 221132 -Test 142 datm_cdeps_lnd_gswp3_intel PASS +Test 143 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/datm_cdeps_lnd_gswp3_rst_intel -Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/datm_cdeps_lnd_gswp3_rst_intel +Checking test 144 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4387,15 +4335,15 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 19.096644 - 0: The maximum resident set size (KB) = 219496 + 0: The total amount of wall time = 26.683877 + 0: The maximum resident set size (KB) = 222076 -Test 143 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 144 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_p8_atmlnd_sbs_intel -Checking test 144 control_p8_atmlnd_sbs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_p8_atmlnd_sbs_intel +Checking test 145 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4479,15 +4427,15 @@ Checking test 144 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 309.478762 - 0: The maximum resident set size (KB) = 1594568 + 0: The total amount of wall time = 408.487118 + 0: The maximum resident set size (KB) = 1610520 -Test 144 control_p8_atmlnd_sbs_intel PASS +Test 145 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmwav_control_noaero_p8_intel -Checking test 145 atmwav_control_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/atmwav_control_noaero_p8_intel +Checking test 146 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4529,15 +4477,15 @@ Checking test 145 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 149.297418 - 0: The maximum resident set size (KB) = 1572464 + 0: The total amount of wall time = 176.646850 + 0: The maximum resident set size (KB) = 1582656 -Test 145 atmwav_control_noaero_p8_intel PASS +Test 146 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/control_atmwav_intel -Checking test 146 control_atmwav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/control_atmwav_intel +Checking test 147 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4580,15 +4528,15 @@ Checking test 146 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 118.464127 - 0: The maximum resident set size (KB) = 598380 + 0: The total amount of wall time = 153.694372 + 0: The maximum resident set size (KB) = 599880 -Test 146 control_atmwav_intel PASS +Test 147 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_intel -Checking test 147 atmaero_control_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/atmaero_control_p8_intel +Checking test 148 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4631,15 +4579,15 @@ Checking test 147 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 324.580808 - 0: The maximum resident set size (KB) = 1678152 + 0: The total amount of wall time = 356.551902 + 0: The maximum resident set size (KB) = 1655156 -Test 147 atmaero_control_p8_intel PASS +Test 148 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_rad_intel -Checking test 148 atmaero_control_p8_rad_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/atmaero_control_p8_rad_intel +Checking test 149 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4682,15 +4630,15 @@ Checking test 148 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.040986 - 0: The maximum resident set size (KB) = 1681040 + 0: The total amount of wall time = 462.590330 + 0: The maximum resident set size (KB) = 1687636 -Test 148 atmaero_control_p8_rad_intel PASS +Test 149 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_177732/atmaero_control_p8_rad_micro_intel -Checking test 149 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_134623/atmaero_control_p8_rad_micro_intel +Checking test 150 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4733,12 +4681,12 @@ Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.863464 - 0: The maximum resident set size (KB) = 1696044 + 0: The total amount of wall time = 462.537182 + 0: The maximum resident set size (KB) = 1693700 -Test 149 atmaero_control_p8_rad_micro_intel PASS +Test 150 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 28 08:49:32 UTC 2023 -Elapsed time: 02h:56m:30s. Have a nice day! +Mon Oct 2 18:10:58 UTC 2023 +Elapsed time: 02h:30m:03s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index d7bc806428..d4c3e5ad33 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,60 +1,60 @@ -Thu Sep 28 08:02:54 CDT 2023 +Mon Oct 2 16:18:22 CDT 2023 Start Regression test -Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 +Testing UFSWM Hash: 42dfe840256d92314818aaff6d27f46c8a91d1db Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atmaero_intel elapsed time 658 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 656 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 244 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 707 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 632 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 675 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 65 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 239 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 694 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 693 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 813 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 780 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 798 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 879 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 296 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1092 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 877 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 813 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 279 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1055 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_mixedmode_intel + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 623 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 594 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 274 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 759 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 608 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 714 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 661 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 129 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 222 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 674 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 236 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 721 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 686 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 764 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 740 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 741 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 885 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 290 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1146 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 802 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 276 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 812 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 275 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1038 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 598 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.020144 - 0: The maximum resident set size (KB) = 3169572 + 0: The total amount of wall time = 304.615265 + 0: The maximum resident set size (KB) = 3171468 -Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 214.458646 - 0: The maximum resident set size (KB) = 1709644 + 0: The total amount of wall time = 217.127541 + 0: The maximum resident set size (KB) = 1709236 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.561106 - 0: The maximum resident set size (KB) = 3210216 + 0: The total amount of wall time = 334.153460 + 0: The maximum resident set size (KB) = 3213032 Test 003 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.335162 - 0: The maximum resident set size (KB) = 3260136 + 0: The total amount of wall time = 194.360287 + 0: The maximum resident set size (KB) = 3258152 Test 004 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -394,14 +394,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.076495 - 0: The maximum resident set size (KB) = 3216724 + 0: The total amount of wall time = 340.239830 + 0: The maximum resident set size (KB) = 3232060 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -454,14 +454,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.667370 - 0: The maximum resident set size (KB) = 3092196 + 0: The total amount of wall time = 198.267072 + 0: The maximum resident set size (KB) = 3103152 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.737227 - 0: The maximum resident set size (KB) = 3554760 + 0: The total amount of wall time = 366.117344 + 0: The maximum resident set size (KB) = 3547564 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.388217 - 0: The maximum resident set size (KB) = 3202376 + 0: The total amount of wall time = 338.769112 + 0: The maximum resident set size (KB) = 3198988 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.304950 - 0: The maximum resident set size (KB) = 3063332 + 0: The total amount of wall time = 284.454849 + 0: The maximum resident set size (KB) = 3067952 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.500030 - 0: The maximum resident set size (KB) = 3210160 + 0: The total amount of wall time = 339.020536 + 0: The maximum resident set size (KB) = 3206140 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_c192_p8_intel Checking test 011 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 588.017695 - 0: The maximum resident set size (KB) = 3329796 + 0: The total amount of wall time = 591.145863 + 0: The maximum resident set size (KB) = 3333884 Test 011 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c192_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_restart_c192_p8_intel Checking test 012 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 383.917210 - 0: The maximum resident set size (KB) = 3627860 + 0: The total amount of wall time = 374.206687 + 0: The maximum resident set size (KB) = 3614392 Test 012 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_bmark_p8_intel Checking test 013 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -881,14 +881,14 @@ Checking test 013 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 755.148662 - 0: The maximum resident set size (KB) = 4118564 + 0: The total amount of wall time = 755.484190 + 0: The maximum resident set size (KB) = 4113764 Test 013 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_restart_bmark_p8_intel Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -936,14 +936,14 @@ Checking test 014 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.732009 - 0: The maximum resident set size (KB) = 4373992 + 0: The total amount of wall time = 491.919520 + 0: The maximum resident set size (KB) = 4361068 Test 014 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_noaero_p8_intel Checking test 015 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 255.873456 - 0: The maximum resident set size (KB) = 1742772 + 0: The total amount of wall time = 251.439722 + 0: The maximum resident set size (KB) = 1745320 Test 015 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_nowave_noaero_p8_intel Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 016 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 255.825091 - 0: The maximum resident set size (KB) = 1779728 + 0: The total amount of wall time = 261.452629 + 0: The maximum resident set size (KB) = 1789960 Test 016 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_debug_p8_intel Checking test 017 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.335649 - 0: The maximum resident set size (KB) = 3244412 + 0: The total amount of wall time = 556.477269 + 0: The maximum resident set size (KB) = 3238784 Test 017 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_debug_noaero_p8_intel Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1195,14 +1195,14 @@ Checking test 018 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.024322 - 0: The maximum resident set size (KB) = 1753340 + 0: The total amount of wall time = 382.697508 + 0: The maximum resident set size (KB) = 1766956 Test 018 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1264,14 +1264,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.023016 - 0: The maximum resident set size (KB) = 1783192 + 0: The total amount of wall time = 262.253577 + 0: The maximum resident set size (KB) = 1782988 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1321,14 +1321,14 @@ Checking test 020 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 499.539149 - 0: The maximum resident set size (KB) = 2832240 + 0: The total amount of wall time = 499.577507 + 0: The maximum resident set size (KB) = 2832924 Test 020 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.599356 - 0: The maximum resident set size (KB) = 3217628 + 0: The total amount of wall time = 313.706195 + 0: The maximum resident set size (KB) = 3207660 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1205.888297 - 0: The maximum resident set size (KB) = 1768260 + 0: The total amount of wall time = 1198.283747 + 0: The maximum resident set size (KB) = 1713204 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 573.370775 - 0: The maximum resident set size (KB) = 1151640 + 0: The total amount of wall time = 581.355348 + 0: The maximum resident set size (KB) = 1148744 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1068.017326 - 0: The maximum resident set size (KB) = 1677604 + 0: The total amount of wall time = 1057.452799 + 0: The maximum resident set size (KB) = 1674660 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1390.239859 - 0: The maximum resident set size (KB) = 1713784 + 0: The total amount of wall time = 1373.823380 + 0: The maximum resident set size (KB) = 1719384 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.259480 - 0: The maximum resident set size (KB) = 698288 + 0: The total amount of wall time = 196.726513 + 0: The maximum resident set size (KB) = 692136 Test 026 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1705,20 +1705,20 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.968413 - 0: The maximum resident set size (KB) = 639816 + 0: The total amount of wall time = 131.374037 + 0: The maximum resident set size (KB) = 640508 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.607056 - 0: The maximum resident set size (KB) = 648908 + 0: The total amount of wall time = 139.110268 + 0: The maximum resident set size (KB) = 648384 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.369726 - 0: The maximum resident set size (KB) = 643016 + 0: The total amount of wall time = 137.655563 + 0: The maximum resident set size (KB) = 638160 Test 029 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.077357 - 0: The maximum resident set size (KB) = 647088 + 0: The total amount of wall time = 136.457029 + 0: The maximum resident set size (KB) = 643028 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1809,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.467083 -0: The maximum resident set size (KB) = 834904 +0: The total amount of wall time = 346.911479 +0: The maximum resident set size (KB) = 831640 Test 031 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_c192_intel Checking test 032 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1827,14 @@ Checking test 032 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.494238 - 0: The maximum resident set size (KB) = 784852 + 0: The total amount of wall time = 532.864057 + 0: The maximum resident set size (KB) = 783672 Test 032 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_c384_intel Checking test 033 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1845,14 +1845,14 @@ Checking test 033 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 580.826618 - 0: The maximum resident set size (KB) = 1348692 + 0: The total amount of wall time = 583.500265 + 0: The maximum resident set size (KB) = 1350704 Test 033 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_c384gdas_intel Checking test 034 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 034 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.500901 - 0: The maximum resident set size (KB) = 1456184 + 0: The total amount of wall time = 511.066333 + 0: The maximum resident set size (KB) = 1448712 Test 034 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_stochy_intel Checking test 035 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,28 +1913,28 @@ Checking test 035 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.647038 - 0: The maximum resident set size (KB) = 645252 + 0: The total amount of wall time = 88.008964 + 0: The maximum resident set size (KB) = 643996 Test 035 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_stochy_restart_intel Checking test 036 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.962089 - 0: The maximum resident set size (KB) = 552780 + 0: The total amount of wall time = 49.579408 + 0: The maximum resident set size (KB) = 560336 Test 036 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_lndp_intel Checking test 037 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1945,14 +1945,14 @@ Checking test 037 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.534602 - 0: The maximum resident set size (KB) = 647968 + 0: The total amount of wall time = 82.871979 + 0: The maximum resident set size (KB) = 645324 Test 037 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_iovr4_intel Checking test 038 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.054032 - 0: The maximum resident set size (KB) = 644096 + 0: The total amount of wall time = 138.420407 + 0: The maximum resident set size (KB) = 641868 Test 038 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_iovr5_intel Checking test 039 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.072245 - 0: The maximum resident set size (KB) = 640620 + 0: The total amount of wall time = 138.407847 + 0: The maximum resident set size (KB) = 639320 Test 039 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_intel Checking test 040 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2043,14 +2043,14 @@ Checking test 040 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.523797 - 0: The maximum resident set size (KB) = 1610132 + 0: The total amount of wall time = 171.679789 + 0: The maximum resident set size (KB) = 1626084 Test 040 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.042275 - 0: The maximum resident set size (KB) = 936660 + 0: The total amount of wall time = 87.757000 + 0: The maximum resident set size (KB) = 934568 Test 041 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_qr_p8_intel Checking test 042 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2143,14 +2143,14 @@ Checking test 042 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.724953 - 0: The maximum resident set size (KB) = 1628436 + 0: The total amount of wall time = 171.480361 + 0: The maximum resident set size (KB) = 1637032 Test 042 control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_restart_qr_p8_intel Checking test 043 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2189,14 +2189,14 @@ Checking test 043 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.430166 - 0: The maximum resident set size (KB) = 883304 + 0: The total amount of wall time = 89.689411 + 0: The maximum resident set size (KB) = 883408 Test 043 control_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2239,14 +2239,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.372007 - 0: The maximum resident set size (KB) = 1611248 + 0: The total amount of wall time = 177.719638 + 0: The maximum resident set size (KB) = 1601732 Test 044 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.332957 - 0: The maximum resident set size (KB) = 1709380 + 0: The total amount of wall time = 180.570250 + 0: The maximum resident set size (KB) = 1692032 Test 045 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 322.784444 - 0: The maximum resident set size (KB) = 1618036 + 0: The total amount of wall time = 315.530859 + 0: The maximum resident set size (KB) = 1615080 Test 046 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.101328 - 0: The maximum resident set size (KB) = 1688940 + 0: The total amount of wall time = 231.382371 + 0: The maximum resident set size (KB) = 1683900 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2423,14 +2423,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.679463 - 0: The maximum resident set size (KB) = 1632276 + 0: The total amount of wall time = 171.083141 + 0: The maximum resident set size (KB) = 1626436 Test 048 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.312862 - 0: The maximum resident set size (KB) = 1642216 + 0: The total amount of wall time = 192.648201 + 0: The maximum resident set size (KB) = 1632296 Test 049 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2495,28 +2495,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.279325 - 0: The maximum resident set size (KB) = 1097444 + 0: The total amount of wall time = 291.747984 + 0: The maximum resident set size (KB) = 1100096 Test 050 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.891871 - 0: The maximum resident set size (KB) = 1085824 + 0: The total amount of wall time = 147.418931 + 0: The maximum resident set size (KB) = 1089764 Test 051 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_control_qr_intel Checking test 052 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2527,28 +2527,28 @@ Checking test 052 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 288.385993 - 0: The maximum resident set size (KB) = 1101612 + 0: The total amount of wall time = 289.425983 + 0: The maximum resident set size (KB) = 1094884 Test 052 regional_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_restart_qr_intel Checking test 053 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.300609 - 0: The maximum resident set size (KB) = 1087572 + 0: The total amount of wall time = 148.407432 + 0: The maximum resident set size (KB) = 1087648 Test 053 regional_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.032067 - 0: The maximum resident set size (KB) = 1097344 + 0: The total amount of wall time = 308.216490 + 0: The maximum resident set size (KB) = 1101192 Test 054 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2577,43 +2577,43 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 201.129335 - 0: The maximum resident set size (KB) = 1074232 + 0: The total amount of wall time = 203.297588 + 0: The maximum resident set size (KB) = 1075764 Test 055 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......OK - Comparing fv3_history2d.nc ............ALT CHECK......OK - Comparing fv3_history.nc ............ALT CHECK......OK + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 289.610826 - 0: The maximum resident set size (KB) = 1364036 + 0: The total amount of wall time = 288.066969 + 0: The maximum resident set size (KB) = 1369372 Test 056 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 288.028068 - 0: The maximum resident set size (KB) = 1097352 + 0: The total amount of wall time = 286.156096 + 0: The maximum resident set size (KB) = 1091512 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.281617 - 0: The maximum resident set size (KB) = 1098468 + 0: The total amount of wall time = 292.807259 + 0: The maximum resident set size (KB) = 1098560 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.516307 - 0: The maximum resident set size (KB) = 921372 + 0: The total amount of wall time = 370.080217 + 0: The maximum resident set size (KB) = 918528 Test 059 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.842285 - 0: The maximum resident set size (KB) = 1249448 + 0: The total amount of wall time = 450.444963 + 0: The maximum resident set size (KB) = 1249796 Test 060 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 262.572132 - 0: The maximum resident set size (KB) = 1218264 + 0: The total amount of wall time = 262.113669 + 0: The maximum resident set size (KB) = 1209444 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.365417 - 0: The maximum resident set size (KB) = 1180316 + 0: The total amount of wall time = 467.486261 + 0: The maximum resident set size (KB) = 1178876 Test 062 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.019368 - 0: The maximum resident set size (KB) = 1325536 + 0: The total amount of wall time = 459.912649 + 0: The maximum resident set size (KB) = 1328524 Test 063 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.967730 - 0: The maximum resident set size (KB) = 1144804 + 0: The total amount of wall time = 226.675226 + 0: The maximum resident set size (KB) = 1141436 Test 064 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2922,14 +2922,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.190022 - 0: The maximum resident set size (KB) = 1243176 + 0: The total amount of wall time = 450.084445 + 0: The maximum resident set size (KB) = 1245080 Test 065 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2976,14 +2976,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.363444 - 0: The maximum resident set size (KB) = 1175988 + 0: The total amount of wall time = 473.774792 + 0: The maximum resident set size (KB) = 1172828 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3022,14 +3022,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.796881 - 0: The maximum resident set size (KB) = 1175352 + 0: The total amount of wall time = 333.328562 + 0: The maximum resident set size (KB) = 1176052 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3076,14 +3076,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.875486 - 0: The maximum resident set size (KB) = 1184972 + 0: The total amount of wall time = 228.086624 + 0: The maximum resident set size (KB) = 1162176 Test 068 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_qr_intel Checking test 069 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3130,14 +3130,14 @@ Checking test 069 hrrr_control_qr_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.974245 - 0: The maximum resident set size (KB) = 1086856 + 0: The total amount of wall time = 227.995714 + 0: The maximum resident set size (KB) = 1041056 Test 069 hrrr_control_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3184,14 +3184,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.559816 - 0: The maximum resident set size (KB) = 1121876 + 0: The total amount of wall time = 237.544879 + 0: The maximum resident set size (KB) = 1109612 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3238,42 +3238,42 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.044245 - 0: The maximum resident set size (KB) = 1139368 + 0: The total amount of wall time = 194.130417 + 0: The maximum resident set size (KB) = 1127672 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.346659 - 0: The maximum resident set size (KB) = 1117376 + 0: The total amount of wall time = 121.860941 + 0: The maximum resident set size (KB) = 1053416 Test 072 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_restart_qr_intel Checking test 073 hrrr_control_restart_qr_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 324.365201 - 0: The maximum resident set size (KB) = 1026564 + 0: The total amount of wall time = 121.011765 + 0: The maximum resident set size (KB) = 928324 Test 073 hrrr_control_restart_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rrfs_v1beta_intel Checking test 074 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3320,14 +3320,14 @@ Checking test 074 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.779533 - 0: The maximum resident set size (KB) = 1202816 + 0: The total amount of wall time = 440.321774 + 0: The maximum resident set size (KB) = 1208916 Test 074 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rrfs_v1nssl_intel Checking test 075 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 075 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 530.324963 - 0: The maximum resident set size (KB) = 803892 + 0: The total amount of wall time = 524.819601 + 0: The maximum resident set size (KB) = 801964 Test 075 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rrfs_v1nssl_nohailnoccn_intel Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,123 +3364,15 @@ Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.524710 - 0: The maximum resident set size (KB) = 920464 + 0: The total amount of wall time = 512.193677 + 0: The maximum resident set size (KB) = 926452 Test 076 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_gf_intel -Checking test 077 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 455.767808 - 0: The maximum resident set size (KB) = 1237244 - -Test 077 hrrr_gf_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_c3_intel -Checking test 078 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.216403 - 0: The maximum resident set size (KB) = 1232116 - -Test 078 hrrr_c3_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_csawmg_intel +Checking test 077 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3490,15 +3382,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.146795 - 0: The maximum resident set size (KB) = 821124 + 0: The total amount of wall time = 341.728138 + 0: The maximum resident set size (KB) = 820404 -Test 079 control_csawmg_intel PASS +Test 077 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_csawmgt_intel +Checking test 078 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3508,15 +3400,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.577621 - 0: The maximum resident set size (KB) = 820300 + 0: The total amount of wall time = 335.689201 + 0: The maximum resident set size (KB) = 808844 -Test 080 control_csawmgt_intel PASS +Test 078 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_ras_intel -Checking test 081 control_ras_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_ras_intel +Checking test 079 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3526,27 +3418,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.978803 - 0: The maximum resident set size (KB) = 814860 + 0: The total amount of wall time = 188.139391 + 0: The maximum resident set size (KB) = 810680 -Test 081 control_ras_intel PASS +Test 079 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wam_intel -Checking test 082 control_wam_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_wam_intel +Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.471712 - 0: The maximum resident set size (KB) = 713972 + 0: The total amount of wall time = 113.692300 + 0: The maximum resident set size (KB) = 712544 -Test 082 control_wam_intel PASS +Test 080 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_faster_intel +Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3592,15 +3484,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.493613 - 0: The maximum resident set size (KB) = 1622544 + 0: The total amount of wall time = 153.222881 + 0: The maximum resident set size (KB) = 1606164 -Test 083 control_p8_faster_intel PASS +Test 081 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_control_faster_intel +Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3610,15 +3502,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.043997 - 0: The maximum resident set size (KB) = 1093300 + 0: The total amount of wall time = 262.191223 + 0: The maximum resident set size (KB) = 1094896 -Test 084 regional_control_faster_intel PASS +Test 082 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_CubedSphereGrid_debug_intel +Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3644,348 +3536,376 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.617517 - 0: The maximum resident set size (KB) = 799320 + 0: The total amount of wall time = 156.500618 + 0: The maximum resident set size (KB) = 802904 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.380367 - 0: The maximum resident set size (KB) = 803508 + 0: The total amount of wall time = 151.600649 + 0: The maximum resident set size (KB) = 793264 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_stochy_debug_intel +Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.557974 - 0: The maximum resident set size (KB) = 807528 + 0: The total amount of wall time = 172.178218 + 0: The maximum resident set size (KB) = 802336 -Test 087 control_stochy_debug_intel PASS +Test 085 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_lndp_debug_intel +Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.223707 - 0: The maximum resident set size (KB) = 800988 + 0: The total amount of wall time = 153.760897 + 0: The maximum resident set size (KB) = 802344 -Test 088 control_lndp_debug_intel PASS +Test 086 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_csawmg_debug_intel +Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.068563 - 0: The maximum resident set size (KB) = 856780 + 0: The total amount of wall time = 239.259322 + 0: The maximum resident set size (KB) = 846144 -Test 089 control_csawmg_debug_intel PASS +Test 087 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_csawmgt_debug_intel +Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.317120 - 0: The maximum resident set size (KB) = 853608 + 0: The total amount of wall time = 234.425690 + 0: The maximum resident set size (KB) = 847168 -Test 090 control_csawmgt_debug_intel PASS +Test 088 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_ras_debug_intel +Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.864162 - 0: The maximum resident set size (KB) = 824528 + 0: The total amount of wall time = 154.381086 + 0: The maximum resident set size (KB) = 813444 -Test 091 control_ras_debug_intel PASS +Test 089 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_diag_debug_intel +Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.514276 - 0: The maximum resident set size (KB) = 859264 + 0: The total amount of wall time = 154.099118 + 0: The maximum resident set size (KB) = 851312 -Test 092 control_diag_debug_intel PASS +Test 090 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_debug_p8_intel +Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.176157 - 0: The maximum resident set size (KB) = 1633068 + 0: The total amount of wall time = 173.310096 + 0: The maximum resident set size (KB) = 1626152 -Test 093 control_debug_p8_intel PASS +Test 091 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_debug_intel +Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 999.753425 - 0: The maximum resident set size (KB) = 1107984 + 0: The total amount of wall time = 1007.856739 + 0: The maximum resident set size (KB) = 1105860 + +Test 092 regional_debug_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_debug_intel +Checking test 093 rap_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 283.287654 + 0: The maximum resident set size (KB) = 1180296 + +Test 093 rap_control_debug_intel PASS + -Test 094 regional_debug_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_debug_intel +Checking test 094 hrrr_control_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 276.519449 + 0: The maximum resident set size (KB) = 1174220 + +Test 094 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_gf_debug_intel +Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.911826 - 0: The maximum resident set size (KB) = 1189696 + 0: The total amount of wall time = 282.643807 + 0: The maximum resident set size (KB) = 1185468 -Test 095 rap_control_debug_intel PASS +Test 095 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_c3_debug_intel +Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.217730 - 0: The maximum resident set size (KB) = 1194400 + 0: The total amount of wall time = 275.518214 + 0: The maximum resident set size (KB) = 1194156 -Test 096 hrrr_control_debug_intel PASS +Test 096 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.631170 - 0: The maximum resident set size (KB) = 1184308 + 0: The total amount of wall time = 278.787110 + 0: The maximum resident set size (KB) = 1188824 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.050267 - 0: The maximum resident set size (KB) = 1276544 + 0: The total amount of wall time = 295.737573 + 0: The maximum resident set size (KB) = 1277244 Test 098 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.416492 - 0: The maximum resident set size (KB) = 1200616 + 0: The total amount of wall time = 299.102757 + 0: The maximum resident set size (KB) = 1136432 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 392.867078 - 0: The maximum resident set size (KB) = 1192416 + 0: The total amount of wall time = 291.096669 + 0: The maximum resident set size (KB) = 1183864 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.077532 - 0: The maximum resident set size (KB) = 1189052 + 0: The total amount of wall time = 280.779762 + 0: The maximum resident set size (KB) = 1187996 Test 101 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.322762 - 0: The maximum resident set size (KB) = 1183840 + 0: The total amount of wall time = 280.788331 + 0: The maximum resident set size (KB) = 1195892 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.843913 - 0: The maximum resident set size (KB) = 1195860 + 0: The total amount of wall time = 276.987536 + 0: The maximum resident set size (KB) = 1182168 Test 103 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.029557 - 0: The maximum resident set size (KB) = 1195572 + 0: The total amount of wall time = 275.260145 + 0: The maximum resident set size (KB) = 1194200 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 456.426731 - 0: The maximum resident set size (KB) = 1187208 + 0: The total amount of wall time = 463.525320 + 0: The maximum resident set size (KB) = 1187516 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.315284 - 0: The maximum resident set size (KB) = 1193208 + 0: The total amount of wall time = 280.652647 + 0: The maximum resident set size (KB) = 1180044 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.571983 - 0: The maximum resident set size (KB) = 1189044 + 0: The total amount of wall time = 339.265139 + 0: The maximum resident set size (KB) = 1193996 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.768722 - 0: The maximum resident set size (KB) = 1184968 + 0: The total amount of wall time = 288.518930 + 0: The maximum resident set size (KB) = 1177540 Test 108 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.964846 - 0: The maximum resident set size (KB) = 592492 + 0: The total amount of wall time = 291.326460 + 0: The maximum resident set size (KB) = 583516 Test 109 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3996,14 +3916,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 248.378531 - 0: The maximum resident set size (KB) = 1108840 + 0: The total amount of wall time = 252.795059 + 0: The maximum resident set size (KB) = 1080932 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4050,14 +3970,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.719595 - 0: The maximum resident set size (KB) = 1111068 + 0: The total amount of wall time = 372.802114 + 0: The maximum resident set size (KB) = 1102472 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4104,14 +4024,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.953047 - 0: The maximum resident set size (KB) = 1031536 + 0: The total amount of wall time = 195.564091 + 0: The maximum resident set size (KB) = 1034432 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_qr_dyn32_phy32_intel Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4158,14 +4078,14 @@ Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.090371 - 0: The maximum resident set size (KB) = 982676 + 0: The total amount of wall time = 190.878522 + 0: The maximum resident set size (KB) = 978992 Test 113 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4212,14 +4132,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.593940 - 0: The maximum resident set size (KB) = 1126300 + 0: The total amount of wall time = 380.235143 + 0: The maximum resident set size (KB) = 1126272 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4266,14 +4186,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.415303 - 0: The maximum resident set size (KB) = 974156 + 0: The total amount of wall time = 163.905899 + 0: The maximum resident set size (KB) = 971568 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4320,14 +4240,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.617724 - 0: The maximum resident set size (KB) = 986644 + 0: The total amount of wall time = 202.126212 + 0: The maximum resident set size (KB) = 933892 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4366,42 +4286,42 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.890556 - 0: The maximum resident set size (KB) = 1056296 + 0: The total amount of wall time = 274.918559 + 0: The maximum resident set size (KB) = 1049600 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.789769 - 0: The maximum resident set size (KB) = 939420 + 0: The total amount of wall time = 99.624998 + 0: The maximum resident set size (KB) = 932776 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_restart_qr_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_restart_qr_dyn32_phy32_intel Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.869778 - 0: The maximum resident set size (KB) = 888464 + 0: The total amount of wall time = 102.493267 + 0: The maximum resident set size (KB) = 886684 Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4337,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 112.012509 - 0: The maximum resident set size (KB) = 1257500 + 0: The total amount of wall time = 111.006123 + 0: The maximum resident set size (KB) = 1257788 Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 48.695987 - 0: The maximum resident set size (KB) = 1175756 + 0: The total amount of wall time = 50.993095 + 0: The maximum resident set size (KB) = 1116100 Test 121 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.622055 - 0: The maximum resident set size (KB) = 1188892 + 0: The total amount of wall time = 63.249782 + 0: The maximum resident set size (KB) = 1183932 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,124 +4417,152 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.177715 - 0: The maximum resident set size (KB) = 1105416 + 0: The total amount of wall time = 241.990603 + 0: The maximum resident set size (KB) = 1105028 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.507128 - 0: The maximum resident set size (KB) = 1074508 + 0: The total amount of wall time = 274.927272 + 0: The maximum resident set size (KB) = 1075900 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.831926 - 0: The maximum resident set size (KB) = 1079072 + 0: The total amount of wall time = 272.752597 + 0: The maximum resident set size (KB) = 1072304 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 850.688714 - 0: The maximum resident set size (KB) = 1274872 + 0: The total amount of wall time = 818.239816 + 0: The maximum resident set size (KB) = 1274952 Test 126 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_debug_2threads_intel -Checking test 127 conus13km_debug_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_debug_qr_intel +Checking test 127 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 834.344206 + 0: The maximum resident set size (KB) = 929744 + +Test 127 conus13km_debug_qr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_debug_2threads_intel +Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.477500 - 0: The maximum resident set size (KB) = 1203316 + 0: The total amount of wall time = 490.437734 + 0: The maximum resident set size (KB) = 1203356 -Test 127 conus13km_debug_2threads_intel PASS +Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/conus13km_radar_tten_debug_intel -Checking test 128 conus13km_radar_tten_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/conus13km_radar_tten_debug_intel +Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 846.306701 - 0: The maximum resident set size (KB) = 1346876 + 0: The total amount of wall time = 847.726601 + 0: The maximum resident set size (KB) = 1346356 -Test 128 conus13km_radar_tten_debug_intel PASS +Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/rap_control_dyn64_phy32_debug_intel -Checking test 129 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/rap_control_dyn64_phy32_debug_intel +Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.274202 - 0: The maximum resident set size (KB) = 1111824 + 0: The total amount of wall time = 285.267508 + 0: The maximum resident set size (KB) = 1098164 -Test 129 rap_control_dyn64_phy32_debug_intel PASS +Test 130 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_intel -Checking test 130 hafs_regional_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_atm_intel +Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 247.634150 - 0: The maximum resident set size (KB) = 1251812 + 0: The total amount of wall time = 244.514230 + 0: The maximum resident set size (KB) = 1246364 -Test 130 hafs_regional_atm_intel PASS +Test 131 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 327.407974 - 0: The maximum resident set size (KB) = 1589328 + 0: The total amount of wall time = 326.899342 + 0: The maximum resident set size (KB) = 1543384 -Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_ocn_intel -Checking test 132 hafs_regional_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_atm_ocn_intel +Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4622,15 +4570,15 @@ Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 376.737801 - 0: The maximum resident set size (KB) = 1418036 + 0: The total amount of wall time = 368.958996 + 0: The maximum resident set size (KB) = 1408996 -Test 132 hafs_regional_atm_ocn_intel PASS +Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_wav_intel -Checking test 133 hafs_regional_atm_wav_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_atm_wav_intel +Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4638,15 +4586,15 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 731.834630 - 0: The maximum resident set size (KB) = 1454092 + 0: The total amount of wall time = 726.331792 + 0: The maximum resident set size (KB) = 1445588 -Test 133 hafs_regional_atm_wav_intel PASS +Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_atm_ocn_wav_intel -Checking test 134 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_atm_ocn_wav_intel +Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4656,15 +4604,15 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.323667 - 0: The maximum resident set size (KB) = 1471604 + 0: The total amount of wall time = 832.252083 + 0: The maximum resident set size (KB) = 1471480 -Test 134 hafs_regional_atm_ocn_wav_intel PASS Tries: 2 +Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_1nest_atm_intel -Checking test 135 hafs_regional_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_1nest_atm_intel +Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4685,15 +4633,15 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 341.256014 - 0: The maximum resident set size (KB) = 658736 + 0: The total amount of wall time = 336.962898 + 0: The maximum resident set size (KB) = 657452 -Test 135 hafs_regional_1nest_atm_intel PASS +Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_1nest_atm_qr_intel -Checking test 136 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_1nest_atm_qr_intel +Checking test 137 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4714,15 +4662,15 @@ Checking test 136 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 348.773185 - 0: The maximum resident set size (KB) = 503384 + 0: The total amount of wall time = 343.818866 + 0: The maximum resident set size (KB) = 505784 -Test 136 hafs_regional_1nest_atm_qr_intel PASS +Test 137 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_telescopic_2nests_atm_intel +Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4730,15 +4678,15 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 390.287201 - 0: The maximum resident set size (KB) = 664132 + 0: The total amount of wall time = 394.546393 + 0: The maximum resident set size (KB) = 611704 -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS +Test 138 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_global_1nest_atm_intel +Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4784,15 +4732,15 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 167.584174 - 0: The maximum resident set size (KB) = 404680 + 0: The total amount of wall time = 163.318582 + 0: The maximum resident set size (KB) = 402252 -Test 138 hafs_global_1nest_atm_intel PASS +Test 139 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_1nest_atm_qr_intel -Checking test 139 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_global_1nest_atm_qr_intel +Checking test 140 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4838,15 +4786,15 @@ Checking test 139 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 173.441308 - 0: The maximum resident set size (KB) = 379712 + 0: The total amount of wall time = 168.838770 + 0: The maximum resident set size (KB) = 322216 -Test 139 hafs_global_1nest_atm_qr_intel PASS +Test 140 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_global_multiple_4nests_atm_intel +Checking test 141 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4927,15 +4875,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 431.624840 - 0: The maximum resident set size (KB) = 487684 + 0: The total amount of wall time = 435.404317 + 0: The maximum resident set size (KB) = 486452 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +Test 141 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_multiple_4nests_atm_qr_intel -Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_global_multiple_4nests_atm_qr_intel +Checking test 142 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5016,15 +4964,15 @@ Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 446.140253 - 0: The maximum resident set size (KB) = 475988 + 0: The total amount of wall time = 447.900545 + 0: The maximum resident set size (KB) = 476912 -Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 142 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_specified_moving_1nest_atm_intel -Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_specified_moving_1nest_atm_intel +Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5032,15 +4980,15 @@ Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.281689 - 0: The maximum resident set size (KB) = 666164 + 0: The total amount of wall time = 218.026298 + 0: The maximum resident set size (KB) = 669336 -Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_storm_following_1nest_atm_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5061,15 +5009,15 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 202.804759 - 0: The maximum resident set size (KB) = 675008 + 0: The total amount of wall time = 204.241959 + 0: The maximum resident set size (KB) = 619132 -Test 143 hafs_regional_storm_following_1nest_atm_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5090,15 +5038,15 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 212.690838 - 0: The maximum resident set size (KB) = 533080 + 0: The total amount of wall time = 213.075823 + 0: The maximum resident set size (KB) = 530096 -Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5106,43 +5054,43 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.806591 - 0: The maximum resident set size (KB) = 723272 + 0: The total amount of wall time = 286.608209 + 0: The maximum resident set size (KB) = 718456 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_global_storm_following_1nest_atm_intel -Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_global_storm_following_1nest_atm_intel +Checking test 147 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.889783 - 0: The maximum resident set size (KB) = 420940 + 0: The total amount of wall time = 64.896879 + 0: The maximum resident set size (KB) = 416100 -Test 146 hafs_global_storm_following_1nest_atm_intel PASS +Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.561361 - 0: The maximum resident set size (KB) = 732032 + 0: The total amount of wall time = 724.289301 + 0: The maximum resident set size (KB) = 746216 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5152,162 +5100,162 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 530.250351 - 0: The maximum resident set size (KB) = 811456 + 0: The total amount of wall time = 533.136579 + 0: The maximum resident set size (KB) = 811176 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_docn_intel -Checking test 149 hafs_regional_docn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 340.833642 - 0: The maximum resident set size (KB) = 1418424 + 0: The total amount of wall time = 340.405315 + 0: The maximum resident set size (KB) = 1357592 -Test 149 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_docn_oisst_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_docn_oisst_intel -Checking test 150 hafs_regional_docn_oisst_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.327349 - 0: The maximum resident set size (KB) = 1386524 + 0: The total amount of wall time = 336.700074 + 0: The maximum resident set size (KB) = 1390384 -Test 150 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/hafs_regional_datm_cdeps_intel -Checking test 151 hafs_regional_datm_cdeps_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 937.782098 - 0: The maximum resident set size (KB) = 1153384 + 0: The total amount of wall time = 949.833256 + 0: The maximum resident set size (KB) = 1211824 -Test 151 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_cfsr_intel -Checking test 152 datm_cdeps_control_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.267786 - 0: The maximum resident set size (KB) = 1102952 + 0: The total amount of wall time = 151.137528 + 0: The maximum resident set size (KB) = 1115644 -Test 152 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_restart_cfsr_intel -Checking test 153 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.215877 - 0: The maximum resident set size (KB) = 1075228 + 0: The total amount of wall time = 88.743450 + 0: The maximum resident set size (KB) = 1076704 -Test 153 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_gefs_intel -Checking test 154 datm_cdeps_control_gefs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.791612 - 0: The maximum resident set size (KB) = 1002384 + 0: The total amount of wall time = 146.393835 + 0: The maximum resident set size (KB) = 1002004 -Test 154 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_iau_gefs_intel -Checking test 155 datm_cdeps_iau_gefs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.848078 - 0: The maximum resident set size (KB) = 1006256 + 0: The total amount of wall time = 147.761680 + 0: The maximum resident set size (KB) = 1005756 -Test 155 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_stochy_gefs_intel -Checking test 156 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.881371 - 0: The maximum resident set size (KB) = 1004868 + 0: The total amount of wall time = 148.749965 + 0: The maximum resident set size (KB) = 998588 -Test 156 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_ciceC_cfsr_intel -Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.515837 - 0: The maximum resident set size (KB) = 1113248 + 0: The total amount of wall time = 146.796329 + 0: The maximum resident set size (KB) = 1115412 -Test 157 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_bulk_cfsr_intel -Checking test 158 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.063606 - 0: The maximum resident set size (KB) = 1114880 + 0: The total amount of wall time = 148.181139 + 0: The maximum resident set size (KB) = 1121472 -Test 158 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_bulk_gefs_intel -Checking test 159 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.887543 - 0: The maximum resident set size (KB) = 1005016 + 0: The total amount of wall time = 145.296624 + 0: The maximum resident set size (KB) = 1007600 -Test 159 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_mx025_cfsr_intel -Checking test 160 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5315,15 +5263,15 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 431.133221 - 0: The maximum resident set size (KB) = 1038956 + 0: The total amount of wall time = 435.273366 + 0: The maximum resident set size (KB) = 1029588 -Test 160 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_mx025_gefs_intel -Checking test 161 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5331,78 +5279,78 @@ Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 427.917798 - 0: The maximum resident set size (KB) = 1018248 + 0: The total amount of wall time = 438.788938 + 0: The maximum resident set size (KB) = 1023836 -Test 161 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_multiple_files_cfsr_intel -Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.057375 - 0: The maximum resident set size (KB) = 1116668 + 0: The total amount of wall time = 147.105653 + 0: The maximum resident set size (KB) = 1122644 -Test 162 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_3072x1536_cfsr_intel -Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.481043 - 0: The maximum resident set size (KB) = 2420928 + 0: The total amount of wall time = 204.525651 + 0: The maximum resident set size (KB) = 2407960 -Test 163 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_gfs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_gfs_intel -Checking test 164 datm_cdeps_gfs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.467012 - 0: The maximum resident set size (KB) = 2461952 + 0: The total amount of wall time = 205.473442 + 0: The maximum resident set size (KB) = 2415472 -Test 164 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_debug_cfsr_intel -Checking test 165 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 359.577482 - 0: The maximum resident set size (KB) = 1044212 + 0: The total amount of wall time = 351.560821 + 0: The maximum resident set size (KB) = 1053332 -Test 165 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_control_cfsr_faster_intel -Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.962961 - 0: The maximum resident set size (KB) = 1125852 + 0: The total amount of wall time = 146.841001 + 0: The maximum resident set size (KB) = 1117496 -Test 166 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_lnd_gswp3_intel -Checking test 167 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5410,15 +5358,15 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 5.910503 - 0: The maximum resident set size (KB) = 257948 + 0: The total amount of wall time = 8.100576 + 0: The maximum resident set size (KB) = 256240 -Test 167 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/datm_cdeps_lnd_gswp3_rst_intel -Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/datm_cdeps_lnd_gswp3_rst_intel +Checking test 169 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5426,15 +5374,15 @@ Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.910390 - 0: The maximum resident set size (KB) = 256028 + 0: The total amount of wall time = 11.383926 + 0: The maximum resident set size (KB) = 253792 -Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 169 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_p8_atmlnd_sbs_intel +Checking test 170 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5472,61 +5420,61 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc ............ALT CHECK......OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 204.676636 - 0: The maximum resident set size (KB) = 1639900 - -Test 169 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmwav_control_noaero_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmwav_control_noaero_p8_intel -Checking test 170 atmwav_control_noaero_p8_intel results .... + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 206.789455 + 0: The maximum resident set size (KB) = 1626108 + +Test 170 control_p8_atmlnd_sbs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/atmwav_control_noaero_p8_intel +Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5568,15 +5516,15 @@ Checking test 170 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.819888 - 0: The maximum resident set size (KB) = 1659532 + 0: The total amount of wall time = 93.359761 + 0: The maximum resident set size (KB) = 1666732 -Test 170 atmwav_control_noaero_p8_intel PASS +Test 171 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/control_atmwav_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/control_atmwav_intel -Checking test 171 control_atmwav_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/control_atmwav_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/control_atmwav_intel +Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5619,15 +5567,15 @@ Checking test 171 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.531830 - 0: The maximum resident set size (KB) = 668328 + 0: The total amount of wall time = 87.103535 + 0: The maximum resident set size (KB) = 659732 -Test 171 control_atmwav_intel PASS +Test 172 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_intel -Checking test 172 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/atmaero_control_p8_intel +Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5670,15 +5618,15 @@ Checking test 172 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.454402 - 0: The maximum resident set size (KB) = 3008156 + 0: The total amount of wall time = 229.414868 + 0: The maximum resident set size (KB) = 3014204 -Test 172 atmaero_control_p8_intel PASS +Test 173 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_rad_intel -Checking test 173 atmaero_control_p8_rad_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/atmaero_control_p8_rad_intel +Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5721,15 +5669,15 @@ Checking test 173 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.644814 - 0: The maximum resident set size (KB) = 3070128 + 0: The total amount of wall time = 281.447464 + 0: The maximum resident set size (KB) = 3064732 -Test 173 atmaero_control_p8_rad_intel PASS +Test 174 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/atmaero_control_p8_rad_micro_intel -Checking test 174 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/atmaero_control_p8_rad_micro_intel +Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5772,15 +5720,15 @@ Checking test 174 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.527378 - 0: The maximum resident set size (KB) = 3084272 + 0: The total amount of wall time = 286.025742 + 0: The maximum resident set size (KB) = 3081496 -Test 174 atmaero_control_p8_rad_micro_intel PASS +Test 175 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_intel -Checking test 175 regional_atmaq_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_atmaq_intel +Checking test 176 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5795,15 +5743,15 @@ Checking test 175 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 639.570112 - 0: The maximum resident set size (KB) = 5589548 + 0: The total amount of wall time = 638.894063 + 0: The maximum resident set size (KB) = 5571148 -Test 175 regional_atmaq_intel PASS +Test 176 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_atmaq_debug_intel +Checking test 177 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5816,15 +5764,15 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1193.076482 - 0: The maximum resident set size (KB) = 4954520 + 0: The total amount of wall time = 1219.402239 + 0: The maximum resident set size (KB) = 4962152 -Test 176 regional_atmaq_debug_intel PASS +Test 177 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20230922/regional_atmaq_faster_intel -working dir = /work/noaa/epic-ps/zshrader/rt-1910/stmp/zshrader/FV3_RT/rt_315280/regional_atmaq_faster_intel -Checking test 177 regional_atmaq_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231002/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/jongkim/orion/stmp/jongkim/FV3_RT/rt_185324/regional_atmaq_faster_intel +Checking test 178 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5839,12 +5787,12 @@ Checking test 177 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 555.859398 - 0: The maximum resident set size (KB) = 5568512 + 0: The total amount of wall time = 561.135414 + 0: The maximum resident set size (KB) = 5562392 -Test 177 regional_atmaq_faster_intel PASS +Test 178 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 28 09:40:23 CDT 2023 -Elapsed time: 01h:37m:30s. Have a nice day! +Mon Oct 2 18:02:54 CDT 2023 +Elapsed time: 01h:44m:34s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index ffa4c16bf7..b8f5661910 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,50 +1,50 @@ -Thu Sep 28 13:08:38 UTC 2023 +Fri Sep 29 20:49:52 UTC 2023 Start Regression test -Testing UFSWM Hash: b865df6471dff8071ec1abae4b9fb39cca109698 +Testing UFSWM Hash: 597fcdc8a63eb51dadd4b1af112909529b74934a Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-2297-gc24fb59) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3b4423cde80275355cc088f977f5b36d9b8ae859 FV3 (heads/develop) + c496c18b560557cdd0f0fd0dd666dbdf2d4aaba6 FV3 (remotes/origin/bugfix/qr-c3-stringlen) 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (heads/master-1-g62b8914) -Compile atmaero_intel elapsed time 810 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 456 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 556 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 494 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1117 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 699 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 943 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 706 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1199 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1046 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 885 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1419 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 881 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1619 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 738 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1154 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1396 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 722 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 1452 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 849 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_mixedmode_intel + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atmaero_intel elapsed time 788 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 1011 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 758 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 953 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 985 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1362 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 829 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 969 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 982 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 931 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 926 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 2012 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 867 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1303 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 2447 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 932 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 1459 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 429 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1026 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -109,14 +109,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 825.095223 -The maximum resident set size (KB) = 2967328 +The total amount of wall time = 614.036106 +The maximum resident set size (KB) = 2968476 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_gfsv17_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -180,14 +180,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 344.388386 -The maximum resident set size (KB) = 1575232 +The total amount of wall time = 339.761930 +The maximum resident set size (KB) = 1569396 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -252,14 +252,14 @@ Checking test 003 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 489.282668 -The maximum resident set size (KB) = 2999732 +The total amount of wall time = 1438.442281 +The maximum resident set size (KB) = 2997084 Test 003 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_restart_p8_intel Checking test 004 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -312,14 +312,14 @@ Checking test 004 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 247.012119 -The maximum resident set size (KB) = 3057556 +The total amount of wall time = 570.063661 +The maximum resident set size (KB) = 3053596 Test 004 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_qr_p8_intel Checking test 005 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -384,14 +384,14 @@ Checking test 005 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 487.554999 -The maximum resident set size (KB) = 3005576 +The total amount of wall time = 1357.715970 +The maximum resident set size (KB) = 3020532 Test 005 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_restart_qr_p8_intel Checking test 006 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -444,14 +444,14 @@ Checking test 006 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.835352 -The maximum resident set size (KB) = 2895848 +The total amount of wall time = 870.674776 +The maximum resident set size (KB) = 2907404 Test 006 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_2threads_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_2threads_p8_intel Checking test 007 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -504,14 +504,14 @@ Checking test 007 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 527.076761 -The maximum resident set size (KB) = 3297776 +The total amount of wall time = 1292.079780 +The maximum resident set size (KB) = 3302180 Test 007 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_decomp_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_decomp_p8_intel Checking test 008 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +564,14 @@ Checking test 008 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 477.926364 -The maximum resident set size (KB) = 2992980 +The total amount of wall time = 1081.224888 +The maximum resident set size (KB) = 2992284 Test 008 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_mpi_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_mpi_p8_intel Checking test 009 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 548.236955 -The maximum resident set size (KB) = 2925904 +The total amount of wall time = 1398.879616 +The maximum resident set size (KB) = 2926196 Test 009 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_ciceC_p8_intel Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 589.187063 -The maximum resident set size (KB) = 2995012 +The total amount of wall time = 1353.440399 +The maximum resident set size (KB) = 2993256 Test 010 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_bmark_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_bmark_p8_intel Checking test 011 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -751,18 +751,69 @@ Checking test 011 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 982.585697 -The maximum resident set size (KB) = 3950872 +The total amount of wall time = 1412.235425 +The maximum resident set size (KB) = 3946760 -Test 011 cpld_bmark_p8_intel PASS +Test 011 cpld_bmark_p8_intel PASS Tries: 2 -Test 012 cpld_restart_bmark_p8_intel FAIL -Test 012 cpld_restart_bmark_p8_intel FAIL +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_bmark_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_restart_bmark_p8_intel +Checking test 012 cpld_restart_bmark_p8_intel results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 876.759426 +The maximum resident set size (KB) = 4244072 + +Test 012 cpld_restart_bmark_p8_intel PASS Tries: 5 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_noaero_p8_intel Checking test 013 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +877,14 @@ Checking test 013 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 342.107248 -The maximum resident set size (KB) = 1584948 +The total amount of wall time = 943.414561 +The maximum resident set size (KB) = 1571088 Test 013 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_nowave_noaero_p8_intel Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +946,14 @@ Checking test 014 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 370.021644 -The maximum resident set size (KB) = 1627600 +The total amount of wall time = 923.704853 +The maximum resident set size (KB) = 1628436 Test 014 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_noaero_p8_agrid_intel Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,14 +1015,14 @@ Checking test 015 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 369.307905 -The maximum resident set size (KB) = 1625424 +The total amount of wall time = 708.256942 +The maximum resident set size (KB) = 1630952 Test 015 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_c48_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_c48_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_c48_intel Checking test 016 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1021,14 +1072,14 @@ Checking test 016 cpld_control_c48_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 489.126543 -The maximum resident set size (KB) = 2642900 +The total amount of wall time = 496.770489 +The maximum resident set size (KB) = 2647780 Test 016 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_p8_faster_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_p8_faster_intel Checking test 017 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1093,14 +1144,14 @@ Checking test 017 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 882.454714 -The maximum resident set size (KB) = 2996480 +The total amount of wall time = 1010.262828 +The maximum resident set size (KB) = 2997496 Test 017 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_control_pdlib_p8_intel Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1164,14 +1215,14 @@ Checking test 018 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1375.485221 -The maximum resident set size (KB) = 1602908 +The total amount of wall time = 1762.511073 +The maximum resident set size (KB) = 1597800 Test 018 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_restart_pdlib_p8_intel Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1223,14 +1274,14 @@ Checking test 019 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 619.461412 -The maximum resident set size (KB) = 875624 +The total amount of wall time = 875.071272 +The maximum resident set size (KB) = 873832 Test 019 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_mpi_pdlib_p8_intel Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1294,14 +1345,14 @@ Checking test 020 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1094.541683 -The maximum resident set size (KB) = 1584336 +The total amount of wall time = 1519.886754 +The maximum resident set size (KB) = 1574904 Test 020 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/cpld_debug_pdlib_p8_intel Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1353,14 +1404,14 @@ Checking test 021 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1455.908103 -The maximum resident set size (KB) = 1634160 +The total amount of wall time = 1570.581049 +The maximum resident set size (KB) = 1626764 Test 021 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_flake_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_flake_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_flake_intel Checking test 022 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1371,14 +1422,14 @@ Checking test 022 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 223.373571 -The maximum resident set size (KB) = 560528 +The total amount of wall time = 297.462219 +The maximum resident set size (KB) = 559580 Test 022 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_CubedSphereGrid_intel Checking test 023 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1405,14 +1456,14 @@ Checking test 023 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 206.103206 -The maximum resident set size (KB) = 513404 +The total amount of wall time = 274.331276 +The maximum resident set size (KB) = 509740 Test 023 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_CubedSphereGrid_parallel_intel Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1427,14 +1478,14 @@ Checking test 024 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 816.077903 -The maximum resident set size (KB) = 518004 +The total amount of wall time = 822.130812 +The maximum resident set size (KB) = 518416 -Test 024 control_CubedSphereGrid_parallel_intel PASS +Test 024 control_CubedSphereGrid_parallel_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_latlon_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_latlon_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_latlon_intel Checking test 025 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1445,14 +1496,14 @@ Checking test 025 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 166.244202 -The maximum resident set size (KB) = 511256 +The total amount of wall time = 223.324141 +The maximum resident set size (KB) = 514212 Test 025 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_wrtGauss_netcdf_parallel_intel Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,14 +1514,14 @@ Checking test 026 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 168.495527 -The maximum resident set size (KB) = 515252 +The total amount of wall time = 276.989185 +The maximum resident set size (KB) = 512308 Test 026 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c48_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_c48_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_c48_intel Checking test 027 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1509,14 +1560,14 @@ Checking test 027 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 363.433768 -The maximum resident set size (KB) = 670868 +The total amount of wall time = 465.471245 +The maximum resident set size (KB) = 672304 Test 027 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c192_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_c192_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_c192_intel Checking test 028 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1578,14 @@ Checking test 028 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 698.400816 -The maximum resident set size (KB) = 610992 +The total amount of wall time = 943.403602 +The maximum resident set size (KB) = 617456 Test 028 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c384_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_c384_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_c384_intel Checking test 029 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1545,14 +1596,14 @@ Checking test 029 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 949.229395 -The maximum resident set size (KB) = 1064764 +The total amount of wall time = 1011.964168 +The maximum resident set size (KB) = 1061416 -Test 029 control_c384_intel PASS +Test 029 control_c384_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_c384gdas_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_c384gdas_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_c384gdas_intel Checking test 030 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1595,14 +1646,14 @@ Checking test 030 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 1012.426285 -The maximum resident set size (KB) = 1199468 +The total amount of wall time = 1452.473229 +The maximum resident set size (KB) = 1199444 Test 030 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_stochy_intel Checking test 031 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1613,28 +1664,28 @@ Checking test 031 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 107.246909 -The maximum resident set size (KB) = 521968 +The total amount of wall time = 683.888372 +The maximum resident set size (KB) = 519384 Test 031 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_restart_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_stochy_restart_intel Checking test 032 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 114.837253 -The maximum resident set size (KB) = 496444 +The total amount of wall time = 77.273605 +The maximum resident set size (KB) = 345396 Test 032 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_lndp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_lndp_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_lndp_intel Checking test 033 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1645,14 +1696,14 @@ Checking test 033 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 124.640563 -The maximum resident set size (KB) = 517024 +The total amount of wall time = 748.798112 +The maximum resident set size (KB) = 516332 Test 033 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_iovr4_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_iovr4_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_iovr4_intel Checking test 034 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1718,14 @@ Checking test 034 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.963767 -The maximum resident set size (KB) = 511500 +The total amount of wall time = 417.835121 +The maximum resident set size (KB) = 513960 Test 034 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_iovr5_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_iovr5_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_iovr5_intel Checking test 035 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1740,14 @@ Checking test 035 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 185.975408 -The maximum resident set size (KB) = 511844 +The total amount of wall time = 497.975473 +The maximum resident set size (KB) = 515536 Test 035 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_intel Checking test 036 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1743,14 +1794,14 @@ Checking test 036 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 714.494157 -The maximum resident set size (KB) = 1496480 +The total amount of wall time = 212.836397 +The maximum resident set size (KB) = 1491344 Test 036 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_restart_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_restart_p8_intel Checking test 037 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1789,14 +1840,14 @@ Checking test 037 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 126.970367 -The maximum resident set size (KB) = 704420 +The total amount of wall time = 265.377576 +The maximum resident set size (KB) = 698936 Test 037 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_qr_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_qr_p8_intel Checking test 038 control_qr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1843,14 +1894,14 @@ Checking test 038 control_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 669.041844 -The maximum resident set size (KB) = 1500104 +The total amount of wall time = 300.941985 +The maximum resident set size (KB) = 1502252 Test 038 control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_restart_qr_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_restart_qr_p8_intel Checking test 039 control_restart_qr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1889,14 +1940,14 @@ Checking test 039 control_restart_qr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 117.747972 -The maximum resident set size (KB) = 674220 +The total amount of wall time = 216.438786 +The maximum resident set size (KB) = 667160 Test 039 control_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_decomp_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_decomp_p8_intel Checking test 040 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1939,14 +1990,14 @@ Checking test 040 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.465519 -The maximum resident set size (KB) = 1484052 +The total amount of wall time = 337.776227 +The maximum resident set size (KB) = 1483296 Test 040 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_2threads_p8_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_2threads_p8_intel Checking test 041 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,14 +2040,14 @@ Checking test 041 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.729068 -The maximum resident set size (KB) = 1573040 +The total amount of wall time = 374.872288 +The maximum resident set size (KB) = 1577544 Test 041 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_lndp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_lndp_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_lndp_intel Checking test 042 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2066,14 @@ Checking test 042 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 730.941680 -The maximum resident set size (KB) = 1491364 +The total amount of wall time = 476.040447 +The maximum resident set size (KB) = 1495360 Test 042 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_rrtmgp_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_rrtmgp_intel Checking test 043 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2069,14 +2120,14 @@ Checking test 043 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.888631 -The maximum resident set size (KB) = 1543340 +The total amount of wall time = 302.779040 +The maximum resident set size (KB) = 1546640 Test 043 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_mynn_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_mynn_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_mynn_intel Checking test 044 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2174,14 @@ Checking test 044 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.988984 -The maximum resident set size (KB) = 1497056 +The total amount of wall time = 413.907422 +The maximum resident set size (KB) = 1496352 Test 044 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/merra2_thompson_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/merra2_thompson_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/merra2_thompson_intel Checking test 045 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2177,14 +2228,14 @@ Checking test 045 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 623.517851 -The maximum resident set size (KB) = 1494512 +The total amount of wall time = 335.584820 +The maximum resident set size (KB) = 1500908 Test 045 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_control_intel Checking test 046 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2195,28 +2246,28 @@ Checking test 046 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 429.464882 -The maximum resident set size (KB) = 867700 +The total amount of wall time = 380.456129 +The maximum resident set size (KB) = 867308 Test 046 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_restart_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_restart_intel Checking test 047 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 212.758058 -The maximum resident set size (KB) = 862404 +The total amount of wall time = 440.035918 +The maximum resident set size (KB) = 863696 Test 047 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_qr_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_control_qr_intel Checking test 048 regional_control_qr_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2227,28 +2278,28 @@ Checking test 048 regional_control_qr_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 495.888554 -The maximum resident set size (KB) = 868780 +The total amount of wall time = 334.533853 +The maximum resident set size (KB) = 870920 Test 048 regional_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_restart_qr_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_restart_qr_intel Checking test 049 regional_restart_qr_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.032542 -The maximum resident set size (KB) = 864000 +The total amount of wall time = 296.781216 +The maximum resident set size (KB) = 863208 Test 049 regional_restart_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_decomp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_decomp_intel Checking test 050 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2259,14 +2310,14 @@ Checking test 050 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 371.271248 -The maximum resident set size (KB) = 861240 +The total amount of wall time = 409.319290 +The maximum resident set size (KB) = 867416 Test 050 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_2threads_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_2threads_intel Checking test 051 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2277,14 +2328,14 @@ Checking test 051 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 368.915935 -The maximum resident set size (KB) = 911464 +The total amount of wall time = 298.521878 +The maximum resident set size (KB) = 909672 Test 051 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_noquilt_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_noquilt_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_noquilt_intel Checking test 052 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2292,28 +2343,28 @@ Checking test 052 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 410.081680 -The maximum resident set size (KB) = 1143084 +The total amount of wall time = 396.479162 +The maximum resident set size (KB) = 1140256 Test 052 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_netcdf_parallel_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_netcdf_parallel_intel Checking test 053 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 587.136261 -The maximum resident set size (KB) = 861580 +The total amount of wall time = 352.341780 +The maximum resident set size (KB) = 863336 Test 053 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_2dwrtdecomp_intel Checking test 054 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,14 +2375,14 @@ Checking test 054 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 392.004736 -The maximum resident set size (KB) = 870344 +The total amount of wall time = 342.753079 +The maximum resident set size (KB) = 871700 Test 054 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_wofs_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/fv3_regional_wofs_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_wofs_intel Checking test 055 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2342,14 +2393,14 @@ Checking test 055 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 561.513364 -The maximum resident set size (KB) = 620568 +The total amount of wall time = 487.117808 +The maximum resident set size (KB) = 620152 Test 055 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_intel Checking test 056 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2396,14 +2447,14 @@ Checking test 056 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 459.169980 -The maximum resident set size (KB) = 895412 +The total amount of wall time = 784.192908 +The maximum resident set size (KB) = 894716 Test 056 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_spp_sppt_shum_skeb_intel Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2414,14 +2465,14 @@ Checking test 057 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 436.711513 -The maximum resident set size (KB) = 1001916 +The total amount of wall time = 381.826340 +The maximum resident set size (KB) = 997916 Test 057 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_decomp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_decomp_intel Checking test 058 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2468,14 +2519,14 @@ Checking test 058 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 477.459676 -The maximum resident set size (KB) = 895084 +The total amount of wall time = 866.245172 +The maximum resident set size (KB) = 891128 Test 058 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_2threads_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_2threads_intel Checking test 059 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2522,14 +2573,14 @@ Checking test 059 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.345715 -The maximum resident set size (KB) = 977764 +The total amount of wall time = 787.643817 +The maximum resident set size (KB) = 978920 Test 059 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_restart_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_restart_intel Checking test 060 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2568,14 +2619,14 @@ Checking test 060 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.933898 -The maximum resident set size (KB) = 810028 +The total amount of wall time = 287.774726 +The maximum resident set size (KB) = 805828 Test 060 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_sfcdiff_intel Checking test 061 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2673,14 @@ Checking test 061 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 491.472663 -The maximum resident set size (KB) = 891876 +The total amount of wall time = 1124.154598 +The maximum resident set size (KB) = 896528 Test 061 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_sfcdiff_decomp_intel Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2727,14 @@ Checking test 062 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 514.145392 -The maximum resident set size (KB) = 894572 +The total amount of wall time = 637.528062 +The maximum resident set size (KB) = 896168 Test 062 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_sfcdiff_restart_intel Checking test 063 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,69 +2773,15 @@ Checking test 063 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 316.232244 -The maximum resident set size (KB) = 815912 +The total amount of wall time = 356.053930 +The maximum resident set size (KB) = 818980 Test 063 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1beta_intel -Checking test 064 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 537.816253 -The maximum resident set size (KB) = 891516 - -Test 064 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1nssl_intel -Checking test 065 rrfs_v1nssl_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_intel +Checking test 064 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2797,16 +2794,48 @@ Checking test 065 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 645.965933 -The maximum resident set size (KB) = 576292 +The total amount of wall time = 282.323647 +The maximum resident set size (KB) = 891468 -Test 065 rrfs_v1nssl_intel PASS +Test 064 hrrr_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1nssl_nohailnoccn_intel -Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_qr_intel +Checking test 065 hrrr_control_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2819,16 +2848,48 @@ Checking test 066 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 505.120188 -The maximum resident set size (KB) = 571108 +The total amount of wall time = 563.050124 +The maximum resident set size (KB) = 905608 -Test 066 rrfs_v1nssl_nohailnoccn_intel PASS +Test 065 hrrr_control_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_gf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_gf_intel -Checking test 067 hrrr_gf_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_decomp_intel +Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2874,15 +2935,15 @@ Checking test 067 hrrr_gf_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 444.038748 -The maximum resident set size (KB) = 897428 +The total amount of wall time = 327.029146 +The maximum resident set size (KB) = 894624 -Test 067 hrrr_gf_intel PASS +Test 066 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_c3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_c3_intel -Checking test 068 hrrr_c3_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_2threads_intel +Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2928,15 +2989,141 @@ Checking test 068 hrrr_c3_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 502.742598 -The maximum resident set size (KB) = 891500 +The total amount of wall time = 429.674930 +The maximum resident set size (KB) = 962468 + +Test 067 hrrr_control_2threads_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_restart_intel +Checking test 068 hrrr_control_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK -Test 068 hrrr_c3_intel PASS +The total amount of wall time = 140.638332 +The maximum resident set size (KB) = 760328 +Test 068 hrrr_control_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmg_intel -Checking test 069 control_csawmg_intel results .... + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_restart_qr_intel +Checking test 069 hrrr_control_restart_qr_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 169.187919 +The maximum resident set size (KB) = 659244 + +Test 069 hrrr_control_restart_qr_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rrfs_v1beta_intel +Checking test 070 rrfs_v1beta_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 523.446140 +The maximum resident set size (KB) = 892600 + +Test 070 rrfs_v1beta_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rrfs_v1nssl_intel +Checking test 071 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 836.305135 +The maximum resident set size (KB) = 581732 + +Test 071 rrfs_v1nssl_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rrfs_v1nssl_nohailnoccn_intel +Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 925.977217 +The maximum resident set size (KB) = 570352 + +Test 072 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_csawmg_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_csawmg_intel +Checking test 073 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2946,15 +3133,15 @@ Checking test 069 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 374.619265 -The maximum resident set size (KB) = 584284 +The total amount of wall time = 686.054379 +The maximum resident set size (KB) = 583960 -Test 069 control_csawmg_intel PASS +Test 073 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmgt_intel -Checking test 070 control_csawmgt_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_csawmgt_intel +Checking test 074 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2964,15 +3151,15 @@ Checking test 070 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 400.845844 -The maximum resident set size (KB) = 580896 +The total amount of wall time = 611.699136 +The maximum resident set size (KB) = 576116 -Test 070 control_csawmgt_intel PASS +Test 074 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_ras_intel -Checking test 071 control_ras_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_ras_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_ras_intel +Checking test 075 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2982,27 +3169,27 @@ Checking test 071 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 220.179625 -The maximum resident set size (KB) = 549852 +The total amount of wall time = 459.898812 +The maximum resident set size (KB) = 551012 -Test 071 control_ras_intel PASS +Test 075 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wam_intel -Checking test 072 control_wam_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_wam_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_wam_intel +Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 154.365281 -The maximum resident set size (KB) = 330936 +The total amount of wall time = 203.905268 +The maximum resident set size (KB) = 329104 -Test 072 control_wam_intel PASS +Test 076 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_faster_intel -Checking test 073 control_p8_faster_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_faster_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_faster_intel +Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3048,15 +3235,15 @@ Checking test 073 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 345.078060 -The maximum resident set size (KB) = 1489228 +The total amount of wall time = 892.313038 +The maximum resident set size (KB) = 1495112 -Test 073 control_p8_faster_intel PASS +Test 077 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_control_faster_intel -Checking test 074 regional_control_faster_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_control_faster_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_control_faster_intel +Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3066,15 +3253,15 @@ Checking test 074 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.180752 -The maximum resident set size (KB) = 865404 +The total amount of wall time = 683.513914 +The maximum resident set size (KB) = 870880 -Test 074 regional_control_faster_intel PASS +Test 078 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_CubedSphereGrid_debug_intel -Checking test 075 control_CubedSphereGrid_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_CubedSphereGrid_debug_intel +Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3100,349 +3287,377 @@ Checking test 075 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 227.758810 -The maximum resident set size (KB) = 676152 +The total amount of wall time = 386.362846 +The maximum resident set size (KB) = 673876 -Test 075 control_CubedSphereGrid_debug_intel PASS +Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 076 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 244.499854 -The maximum resident set size (KB) = 672796 +The total amount of wall time = 705.074225 +The maximum resident set size (KB) = 676360 -Test 076 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_stochy_debug_intel -Checking test 077 control_stochy_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_stochy_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_stochy_debug_intel +Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 367.057286 -The maximum resident set size (KB) = 680524 +The total amount of wall time = 632.432621 +The maximum resident set size (KB) = 687108 -Test 077 control_stochy_debug_intel PASS +Test 081 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_lndp_debug_intel -Checking test 078 control_lndp_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_lndp_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_lndp_debug_intel +Checking test 082 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 219.930201 -The maximum resident set size (KB) = 678384 +The total amount of wall time = 687.042415 +The maximum resident set size (KB) = 681036 -Test 078 control_lndp_debug_intel PASS +Test 082 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmg_debug_intel -Checking test 079 control_csawmg_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_csawmg_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_csawmg_debug_intel +Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.502018 -The maximum resident set size (KB) = 714908 +The total amount of wall time = 340.418891 +The maximum resident set size (KB) = 717700 -Test 079 control_csawmg_debug_intel PASS +Test 083 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_csawmgt_debug_intel -Checking test 080 control_csawmgt_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_csawmgt_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_csawmgt_debug_intel +Checking test 084 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.871511 -The maximum resident set size (KB) = 717168 +The total amount of wall time = 502.059051 +The maximum resident set size (KB) = 718348 -Test 080 control_csawmgt_debug_intel PASS +Test 084 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_ras_debug_intel -Checking test 081 control_ras_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_ras_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_ras_debug_intel +Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.528296 -The maximum resident set size (KB) = 692932 +The total amount of wall time = 678.046492 +The maximum resident set size (KB) = 694336 -Test 081 control_ras_debug_intel PASS +Test 085 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_diag_debug_intel -Checking test 082 control_diag_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_diag_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_diag_debug_intel +Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.562180 -The maximum resident set size (KB) = 733292 +The total amount of wall time = 501.542192 +The maximum resident set size (KB) = 735316 -Test 082 control_diag_debug_intel PASS +Test 086 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_debug_p8_intel -Checking test 083 control_debug_p8_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_debug_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_debug_p8_intel +Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 191.376762 -The maximum resident set size (KB) = 1499380 +The total amount of wall time = 273.855977 +The maximum resident set size (KB) = 1506796 -Test 083 control_debug_p8_intel PASS +Test 087 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_debug_intel -Checking test 084 regional_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_debug_intel +Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1067.192946 -The maximum resident set size (KB) = 887980 +The total amount of wall time = 1115.417828 +The maximum resident set size (KB) = 888784 -Test 084 regional_debug_intel PASS +Test 088 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_debug_intel -Checking test 085 rap_control_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_debug_intel +Checking test 089 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.152568 -The maximum resident set size (KB) = 1051388 +The total amount of wall time = 601.302409 +The maximum resident set size (KB) = 1055812 -Test 085 rap_control_debug_intel PASS +Test 089 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_debug_intel -Checking test 086 hrrr_control_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_debug_intel +Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 324.361221 -The maximum resident set size (KB) = 1053632 +The total amount of wall time = 761.304370 +The maximum resident set size (KB) = 1049236 -Test 086 hrrr_control_debug_intel PASS +Test 090 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_unified_drag_suite_debug_intel -Checking test 087 rap_unified_drag_suite_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_gf_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_gf_debug_intel +Checking test 091 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.057019 -The maximum resident set size (KB) = 1053712 +The total amount of wall time = 510.807800 +The maximum resident set size (KB) = 1054388 -Test 087 rap_unified_drag_suite_debug_intel PASS +Test 091 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_diag_debug_intel -Checking test 088 rap_diag_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_c3_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_c3_debug_intel +Checking test 092 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 330.348288 -The maximum resident set size (KB) = 1135508 +The total amount of wall time = 611.226965 +The maximum resident set size (KB) = 1053424 -Test 088 rap_diag_debug_intel PASS +Test 092 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_cires_ugwp_debug_intel -Checking test 089 rap_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_unified_drag_suite_debug_intel +Checking test 093 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 331.767214 -The maximum resident set size (KB) = 1054056 +The total amount of wall time = 393.479999 +The maximum resident set size (KB) = 1055296 -Test 089 rap_cires_ugwp_debug_intel PASS +Test 093 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_unified_ugwp_debug_intel -Checking test 090 rap_unified_ugwp_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_diag_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_diag_debug_intel +Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 317.674471 -The maximum resident set size (KB) = 1056260 +The total amount of wall time = 368.113601 +The maximum resident set size (KB) = 1137700 -Test 090 rap_unified_ugwp_debug_intel PASS +Test 094 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_lndp_debug_intel -Checking test 091 rap_lndp_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_cires_ugwp_debug_intel +Checking test 095 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 321.651069 -The maximum resident set size (KB) = 1054696 +The total amount of wall time = 406.713956 +The maximum resident set size (KB) = 1056368 -Test 091 rap_lndp_debug_intel PASS +Test 095 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_progcld_thompson_debug_intel -Checking test 092 rap_progcld_thompson_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_unified_ugwp_debug_intel +Checking test 096 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 326.098208 -The maximum resident set size (KB) = 1055624 +The total amount of wall time = 421.040851 +The maximum resident set size (KB) = 1057108 -Test 092 rap_progcld_thompson_debug_intel PASS +Test 096 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_noah_debug_intel -Checking test 093 rap_noah_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_lndp_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_lndp_debug_intel +Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 333.471469 -The maximum resident set size (KB) = 1052740 +The total amount of wall time = 447.510309 +The maximum resident set size (KB) = 1057408 -Test 093 rap_noah_debug_intel PASS +Test 097 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_sfcdiff_debug_intel -Checking test 094 rap_sfcdiff_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_progcld_thompson_debug_intel +Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 318.675159 -The maximum resident set size (KB) = 1058264 +The total amount of wall time = 380.663658 +The maximum resident set size (KB) = 1056128 -Test 094 rap_sfcdiff_debug_intel PASS +Test 098 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_noah_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_noah_debug_intel +Checking test 099 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 490.808927 -The maximum resident set size (KB) = 1049988 +The total amount of wall time = 413.251590 +The maximum resident set size (KB) = 1051924 -Test 095 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 099 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rrfs_v1beta_debug_intel -Checking test 096 rrfs_v1beta_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_sfcdiff_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_sfcdiff_debug_intel +Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.159399 -The maximum resident set size (KB) = 1051884 +The total amount of wall time = 390.977910 +The maximum resident set size (KB) = 1055860 -Test 096 rrfs_v1beta_debug_intel PASS +Test 100 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_clm_lake_debug_intel -Checking test 097 rap_clm_lake_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 380.090643 -The maximum resident set size (KB) = 1055408 +The total amount of wall time = 673.974404 +The maximum resident set size (KB) = 1053544 -Test 097 rap_clm_lake_debug_intel PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_flake_debug_intel -Checking test 098 rap_flake_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rrfs_v1beta_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rrfs_v1beta_debug_intel +Checking test 102 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.794542 -The maximum resident set size (KB) = 1056548 +The total amount of wall time = 331.467976 +The maximum resident set size (KB) = 1050828 -Test 098 rap_flake_debug_intel PASS +Test 102 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_wam_debug_intel -Checking test 099 control_wam_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_clm_lake_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_clm_lake_debug_intel +Checking test 103 rap_clm_lake_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 420.356719 +The maximum resident set size (KB) = 1058056 + +Test 103 rap_clm_lake_debug_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_flake_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_flake_debug_intel +Checking test 104 rap_flake_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 364.136741 +The maximum resident set size (KB) = 1053568 + +Test 104 rap_flake_debug_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_wam_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_wam_debug_intel +Checking test 105 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 309.240760 -The maximum resident set size (KB) = 357148 +The total amount of wall time = 327.715786 +The maximum resident set size (KB) = 359940 -Test 099 control_wam_debug_intel PASS +Test 105 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3452,15 +3667,15 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.740451 -The maximum resident set size (KB) = 895900 +The total amount of wall time = 403.341131 +The maximum resident set size (KB) = 893172 -Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn32_phy32_intel -Checking test 101 rap_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_dyn32_phy32_intel +Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3506,15 +3721,15 @@ Checking test 101 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 355.828232 -The maximum resident set size (KB) = 781928 +The total amount of wall time = 707.835637 +The maximum resident set size (KB) = 779392 -Test 101 rap_control_dyn32_phy32_intel PASS +Test 107 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_dyn32_phy32_intel -Checking test 102 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_dyn32_phy32_intel +Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3560,15 +3775,15 @@ Checking test 102 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 190.698636 -The maximum resident set size (KB) = 773476 +The total amount of wall time = 237.322364 +The maximum resident set size (KB) = 777744 -Test 102 hrrr_control_dyn32_phy32_intel PASS +Test 108 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_qr_dyn32_phy32_intel -Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_qr_dyn32_phy32_intel +Checking test 109 hrrr_control_qr_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3614,15 +3829,15 @@ Checking test 103 hrrr_control_qr_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 187.234611 -The maximum resident set size (KB) = 790408 +The total amount of wall time = 209.433821 +The maximum resident set size (KB) = 789736 -Test 103 hrrr_control_qr_dyn32_phy32_intel PASS +Test 109 hrrr_control_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_2threads_dyn32_phy32_intel -Checking test 104 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_2threads_dyn32_phy32_intel +Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3668,15 +3883,15 @@ Checking test 104 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.758415 -The maximum resident set size (KB) = 833404 +The total amount of wall time = 604.961297 +The maximum resident set size (KB) = 837244 -Test 104 rap_2threads_dyn32_phy32_intel PASS +Test 110 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_2threads_dyn32_phy32_intel -Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_2threads_dyn32_phy32_intel +Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3722,15 +3937,15 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.862293 -The maximum resident set size (KB) = 823016 +The total amount of wall time = 187.009401 +The maximum resident set size (KB) = 823688 -Test 105 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_decomp_dyn32_phy32_intel -Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_decomp_dyn32_phy32_intel +Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3776,15 +3991,15 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.344339 -The maximum resident set size (KB) = 776576 +The total amount of wall time = 241.013508 +The maximum resident set size (KB) = 774556 -Test 106 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_restart_dyn32_phy32_intel -Checking test 107 rap_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_restart_dyn32_phy32_intel +Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3822,43 +4037,43 @@ Checking test 107 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 265.322703 -The maximum resident set size (KB) = 703564 +The total amount of wall time = 250.405217 +The maximum resident set size (KB) = 704768 -Test 107 rap_restart_dyn32_phy32_intel PASS +Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_restart_dyn32_phy32_intel -Checking test 108 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_restart_dyn32_phy32_intel +Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.093925 -The maximum resident set size (KB) = 666568 +The total amount of wall time = 271.324648 +The maximum resident set size (KB) = 667364 -Test 108 hrrr_control_restart_dyn32_phy32_intel PASS +Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 109 hrrr_control_restart_qr_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_restart_qr_dyn32_phy32_intel +Checking test 115 hrrr_control_restart_qr_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 102.865889 -The maximum resident set size (KB) = 630528 +The total amount of wall time = 276.133201 +The maximum resident set size (KB) = 633688 -Test 109 hrrr_control_restart_qr_dyn32_phy32_intel PASS +Test 115 hrrr_control_restart_qr_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_control_intel -Checking test 110 conus13km_control_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_control_intel +Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3873,41 +4088,41 @@ Checking test 110 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 169.790044 -The maximum resident set size (KB) = 1059532 +The total amount of wall time = 239.211284 +The maximum resident set size (KB) = 1057284 -Test 110 conus13km_control_intel PASS +Test 116 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_2threads_intel -Checking test 111 conus13km_2threads_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_control_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_2threads_intel +Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 85.702150 -The maximum resident set size (KB) = 1062140 +The total amount of wall time = 103.540476 +The maximum resident set size (KB) = 1055328 -Test 111 conus13km_2threads_intel PASS +Test 117 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_restart_mismatch_intel -Checking test 112 conus13km_restart_mismatch_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_restart_mismatch_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_restart_mismatch_intel +Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 120.993384 -The maximum resident set size (KB) = 953228 +The total amount of wall time = 105.441624 +The maximum resident set size (KB) = 947908 -Test 112 conus13km_restart_mismatch_intel PASS +Test 118 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn64_phy32_intel -Checking test 113 rap_control_dyn64_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_dyn64_phy32_intel +Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3953,124 +4168,152 @@ Checking test 113 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.719017 -The maximum resident set size (KB) = 809232 +The total amount of wall time = 415.630779 +The maximum resident set size (KB) = 810360 + +Test 119 rap_control_dyn64_phy32_intel PASS + + +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_debug_dyn32_phy32_intel +Checking test 120 rap_control_debug_dyn32_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 402.879851 +The maximum resident set size (KB) = 938804 -Test 113 rap_control_dyn64_phy32_intel PASS +Test 120 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_debug_dyn32_phy32_intel -Checking test 114 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hrrr_control_debug_dyn32_phy32_intel +Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.943236 -The maximum resident set size (KB) = 939656 +The total amount of wall time = 365.345895 +The maximum resident set size (KB) = 937060 -Test 114 rap_control_debug_dyn32_phy32_intel PASS +Test 121 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hrrr_control_debug_dyn32_phy32_intel -Checking test 115 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_debug_intel +Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 309.588701 -The maximum resident set size (KB) = 932132 +The total amount of wall time = 920.658280 +The maximum resident set size (KB) = 1083840 -Test 115 hrrr_control_debug_dyn32_phy32_intel PASS +Test 122 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_debug_intel -Checking test 116 conus13km_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_debug_qr_intel +Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 903.735832 -The maximum resident set size (KB) = 1084408 +The total amount of wall time = 1291.158080 +The maximum resident set size (KB) = 710352 -Test 116 conus13km_debug_intel PASS +Test 123 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_debug_2threads_intel -Checking test 117 conus13km_debug_2threads_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_debug_2threads_intel +Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 527.420571 -The maximum resident set size (KB) = 1097636 +The total amount of wall time = 993.915829 +The maximum resident set size (KB) = 1093436 -Test 117 conus13km_debug_2threads_intel PASS +Test 124 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/conus13km_radar_tten_debug_intel -Checking test 118 conus13km_radar_tten_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/conus13km_radar_tten_debug_intel +Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 929.027631 -The maximum resident set size (KB) = 1155940 +The total amount of wall time = 1205.993967 +The maximum resident set size (KB) = 1154516 -Test 118 conus13km_radar_tten_debug_intel PASS +Test 125 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/rap_control_dyn64_phy32_debug_intel -Checking test 119 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/rap_control_dyn64_phy32_debug_intel +Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 316.349041 -The maximum resident set size (KB) = 953700 +The total amount of wall time = 374.952564 +The maximum resident set size (KB) = 952568 -Test 119 rap_control_dyn64_phy32_debug_intel PASS +Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_intel -Checking test 120 hafs_regional_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_atm_intel +Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 289.570858 -The maximum resident set size (KB) = 1112976 +The total amount of wall time = 720.340466 +The maximum resident set size (KB) = 1118184 -Test 120 hafs_regional_atm_intel PASS +Test 127 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 121 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.763631 -The maximum resident set size (KB) = 1474992 +The total amount of wall time = 676.807905 +The maximum resident set size (KB) = 1479196 -Test 121 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_ocn_intel -Checking test 122 hafs_regional_atm_ocn_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_atm_ocn_intel +Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4078,15 +4321,15 @@ Checking test 122 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 412.064572 -The maximum resident set size (KB) = 1102312 +The total amount of wall time = 731.765380 +The maximum resident set size (KB) = 1101636 -Test 122 hafs_regional_atm_ocn_intel PASS +Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_wav_intel -Checking test 123 hafs_regional_atm_wav_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_wav_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_atm_wav_intel +Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4094,15 +4337,15 @@ Checking test 123 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 741.143094 -The maximum resident set size (KB) = 1192336 +The total amount of wall time = 1119.671317 +The maximum resident set size (KB) = 1192984 -Test 123 hafs_regional_atm_wav_intel PASS +Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_atm_ocn_wav_intel -Checking test 124 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_atm_ocn_wav_intel +Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4112,15 +4355,15 @@ Checking test 124 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 1176.454410 -The maximum resident set size (KB) = 1166716 +The total amount of wall time = 1178.136065 +The maximum resident set size (KB) = 1158124 -Test 124 hafs_regional_atm_ocn_wav_intel PASS +Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_1nest_atm_intel -Checking test 125 hafs_regional_1nest_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_1nest_atm_intel +Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4141,15 +4384,15 @@ Checking test 125 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 317.727592 -The maximum resident set size (KB) = 534604 +The total amount of wall time = 496.898095 +The maximum resident set size (KB) = 536104 -Test 125 hafs_regional_1nest_atm_intel PASS +Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_1nest_atm_qr_intel -Checking test 126 hafs_regional_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_1nest_atm_qr_intel +Checking test 133 hafs_regional_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4170,15 +4413,15 @@ Checking test 126 hafs_regional_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 410.531750 -The maximum resident set size (KB) = 383620 +The total amount of wall time = 679.704393 +The maximum resident set size (KB) = 386216 -Test 126 hafs_regional_1nest_atm_qr_intel PASS +Test 133 hafs_regional_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_telescopic_2nests_atm_intel -Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_telescopic_2nests_atm_intel +Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4186,15 +4429,15 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 388.189400 -The maximum resident set size (KB) = 531248 +The total amount of wall time = 592.677678 +The maximum resident set size (KB) = 551780 -Test 127 hafs_regional_telescopic_2nests_atm_intel PASS +Test 134 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_1nest_atm_intel -Checking test 128 hafs_global_1nest_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_global_1nest_atm_intel +Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4240,15 +4483,15 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 165.434511 -The maximum resident set size (KB) = 428536 +The total amount of wall time = 281.041941 +The maximum resident set size (KB) = 306848 -Test 128 hafs_global_1nest_atm_intel PASS +Test 135 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_1nest_atm_qr_intel -Checking test 129 hafs_global_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_global_1nest_atm_qr_intel +Checking test 136 hafs_global_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4294,15 +4537,15 @@ Checking test 129 hafs_global_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 208.720256 -The maximum resident set size (KB) = 285856 +The total amount of wall time = 314.255659 +The maximum resident set size (KB) = 296636 -Test 129 hafs_global_1nest_atm_qr_intel PASS +Test 136 hafs_global_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_multiple_4nests_atm_intel -Checking test 130 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_global_multiple_4nests_atm_intel +Checking test 137 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4383,15 +4626,15 @@ Checking test 130 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 614.517291 -The maximum resident set size (KB) = 376680 +The total amount of wall time = 494.426065 +The maximum resident set size (KB) = 370752 -Test 130 hafs_global_multiple_4nests_atm_intel PASS +Test 137 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_multiple_4nests_atm_qr_intel -Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_global_multiple_4nests_atm_qr_intel +Checking test 138 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4472,15 +4715,15 @@ Checking test 131 hafs_global_multiple_4nests_atm_qr_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 720.982054 -The maximum resident set size (KB) = 380440 +The total amount of wall time = 654.479012 +The maximum resident set size (KB) = 380372 -Test 131 hafs_global_multiple_4nests_atm_qr_intel PASS +Test 138 hafs_global_multiple_4nests_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_specified_moving_1nest_atm_intel -Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_specified_moving_1nest_atm_intel +Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4488,15 +4731,15 @@ Checking test 132 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 226.059128 -The maximum resident set size (KB) = 547852 +The total amount of wall time = 240.149101 +The maximum resident set size (KB) = 548596 -Test 132 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_intel -Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_storm_following_1nest_atm_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4517,15 +4760,15 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 219.502472 -The maximum resident set size (KB) = 550384 +The total amount of wall time = 204.407613 +The maximum resident set size (KB) = 557476 -Test 133 hafs_regional_storm_following_1nest_atm_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_storm_following_1nest_atm_qr_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4546,15 +4789,15 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_qr_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 370.813974 -The maximum resident set size (KB) = 416972 +The total amount of wall time = 279.330577 +The maximum resident set size (KB) = 416264 -Test 134 hafs_regional_storm_following_1nest_atm_qr_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4562,43 +4805,43 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 373.656151 -The maximum resident set size (KB) = 610160 +The total amount of wall time = 265.070086 +The maximum resident set size (KB) = 613440 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_global_storm_following_1nest_atm_intel -Checking test 136 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_global_storm_following_1nest_atm_intel +Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 107.367471 -The maximum resident set size (KB) = 321140 +The total amount of wall time = 86.159867 +The maximum resident set size (KB) = 330180 -Test 136 hafs_global_storm_following_1nest_atm_intel PASS +Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 1051.653995 -The maximum resident set size (KB) = 601524 +The total amount of wall time = 818.683752 +The maximum resident set size (KB) = 599188 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4608,15 +4851,15 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 746.487179 -The maximum resident set size (KB) = 652424 +The total amount of wall time = 528.799174 +The maximum resident set size (KB) = 664752 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/control_p8_atmlnd_sbs_intel -Checking test 139 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/control_p8_atmlnd_sbs_intel +Checking test 146 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4700,15 +4943,15 @@ Checking test 139 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 317.486252 -The maximum resident set size (KB) = 1547512 +The total amount of wall time = 380.065000 +The maximum resident set size (KB) = 1545128 -Test 139 control_p8_atmlnd_sbs_intel PASS +Test 146 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_intel -Checking test 140 atmaero_control_p8_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/atmaero_control_p8_intel +Checking test 147 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4751,15 +4994,15 @@ Checking test 140 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.252709 -The maximum resident set size (KB) = 2823388 +The total amount of wall time = 299.773618 +The maximum resident set size (KB) = 2821452 -Test 140 atmaero_control_p8_intel PASS +Test 147 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_rad_intel -Checking test 141 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/atmaero_control_p8_rad_intel +Checking test 148 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4802,15 +5045,15 @@ Checking test 141 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.732005 -The maximum resident set size (KB) = 2888072 +The total amount of wall time = 304.741919 +The maximum resident set size (KB) = 2885644 -Test 141 atmaero_control_p8_rad_intel PASS +Test 148 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/atmaero_control_p8_rad_micro_intel -Checking test 142 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/atmaero_control_p8_rad_micro_intel +Checking test 149 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4853,19 +5096,38 @@ Checking test 142 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 350.513116 -The maximum resident set size (KB) = 2897032 +The total amount of wall time = 328.812223 +The maximum resident set size (KB) = 2894084 + +Test 149 atmaero_control_p8_rad_micro_intel PASS + -Test 142 atmaero_control_p8_rad_micro_intel PASS +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_atmaq_intel +Checking test 150 regional_atmaq_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -Test 143 regional_atmaq_intel FAIL +The total amount of wall time = 915.441421 +The maximum resident set size (KB) = 5320372 -Test 143 regional_atmaq_intel FAIL +Test 150 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230922/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_86708/regional_atmaq_debug_intel -Checking test 144 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h2/oar/esrl/noscrub/samuel.trahan/RT/NEMSfv3gfs/develop-20231002/regional_atmaq_debug_intel +working dir = /lfs/h2/oar/ptmp/samuel.trahan/FV3_RT/rt_136625/regional_atmaq_debug_intel +Checking test 151 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4878,15 +5140,12 @@ Checking test 144 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1701.717411 -The maximum resident set size (KB) = 4827964 +The total amount of wall time = 1429.225422 +The maximum resident set size (KB) = 4829832 -Test 144 regional_atmaq_debug_intel PASS +Test 151 regional_atmaq_debug_intel PASS Tries: 5 -FAILED TESTS: -cpld_restart_bmark_p8_intel 012 failed in run_test -regional_atmaq_intel 143 failed in run_test -REGRESSION TEST FAILED -Thu Sep 28 15:19:58 UTC 2023 -Elapsed time: 02h:11m:21s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Mon Oct 2 15:30:07 UTC 2023 +Elapsed time: 18h:40m:18s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 7f15d4ed7c..85e31610b1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -113,7 +113,7 @@ RUN | regional_ifi_control | + acorn RUN | regional_ifi_decomp | + acorn | | RUN | regional_ifi_2threads | + acorn | | -COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | | fv3 | +COMPILE | rrfs | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | baseline | RUN | regional_spp_sppt_shum_skeb | | baseline | RUN | rap_decomp | - noaacloud | | @@ -122,17 +122,15 @@ RUN | rap_restart | - noaacloud RUN | rap_sfcdiff | - noaacloud | baseline | RUN | rap_sfcdiff_decomp | - noaacloud | | RUN | rap_sfcdiff_restart | - noaacloud | | rap_sfcdiff -RUN | hrrr_control | - wcoss2 noaacloud | baseline | -RUN | hrrr_control_qr | - wcoss2 noaacloud | | -RUN | hrrr_control_decomp | - wcoss2 noaacloud | | -RUN | hrrr_control_2threads | - wcoss2 noaacloud | | -RUN | hrrr_control_restart | - wcoss2 noaacloud | | hrrr_control -RUN | hrrr_control_restart_qr | - wcoss2 noaacloud | | hrrr_control_qr +RUN | hrrr_control | - noaacloud | baseline | +RUN | hrrr_control_qr | - noaacloud | | +RUN | hrrr_control_decomp | - noaacloud | | +RUN | hrrr_control_2threads | - noaacloud | | +RUN | hrrr_control_restart | - noaacloud | | hrrr_control +RUN | hrrr_control_restart_qr | - noaacloud | | hrrr_control_qr RUN | rrfs_v1beta | | baseline | RUN | rrfs_v1nssl | | baseline | RUN | rrfs_v1nssl_nohailnoccn | | baseline | -RUN | hrrr_gf | - noaacloud | baseline | -RUN | hrrr_c3 | - noaacloud | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | RUN | control_csawmg | - gaea.intel noaacloud | baseline | @@ -148,7 +146,7 @@ RUN | control_p8_faster | - noaacloud RUN | regional_control_faster | | baseline | ### DEBUG ATM tests ### -COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | - noaacloud | fv3 | +COMPILE | atm_debug_dyn32 | intel | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf | - noaacloud | fv3 | RUN | control_CubedSphereGrid_debug | - noaacloud | baseline | RUN | control_wrtGauss_netcdf_parallel_debug | - noaacloud | baseline | RUN | control_stochy_debug | - noaacloud | baseline | @@ -161,6 +159,8 @@ RUN | control_debug_p8 | - noaacloud RUN | regional_debug | - noaacloud | baseline | RUN | rap_control_debug | - noaacloud | baseline | RUN | hrrr_control_debug | - noaacloud | baseline | +RUN | hrrr_gf_debug | - noaacloud | baseline | +RUN | hrrr_c3_debug | - noaacloud | baseline | RUN | rap_unified_drag_suite_debug | - noaacloud | | RUN | rap_diag_debug | - noaacloud | baseline | RUN | rap_cires_ugwp_debug | - noaacloud | baseline | @@ -196,23 +196,22 @@ RUN | conus13km_2threads | - noaacloud RUN | conus13km_restart_mismatch | - noaacloud | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | - noaacloud | | conus13km_control -# RUN | conus13km_decomp | - noaacloud | | conus13km_control -# RUN | conus13km_control_qr | - noaacloud | baseline | -# RUN | conus13km_restart_qr_mismatch | - noaacloud | baseline | conus13km_control +# RUN | conus13km_restart | - noaacloud | | conus13km_control +# RUN | conus13km_decomp | - noaacloud | | conus13km_control COMPILE | rrfs_dyn64_phy32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | - noaacloud | fv3 | RUN | rap_control_dyn64_phy32 | - noaacloud | baseline | COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | -RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_2threads | - noaacloud | | -RUN | conus13km_radar_tten_debug | - noaacloud | baseline | +RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | +RUN | conus13km_debug | - noaacloud | baseline | +RUN | conus13km_debug_qr | - noaacloud cheyenne | | +RUN | conus13km_debug_2threads | - noaacloud | | +RUN | conus13km_radar_tten_debug | - noaacloud | baseline | # Expected to fail: -# RUN | conus13km_debug_decomp | | | +# RUN | conus13km_debug_decomp | - noaacloud | | COMPILE | rrfs_dyn64_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | - noaacloud | fv3 | RUN | rap_control_dyn64_phy32_debug | - noaacloud | baseline | @@ -315,7 +314,7 @@ RUN | control_ras | + hera cheyenne hercul RUN | control_p8 | + hera cheyenne hercules | baseline | RUN | control_flake | + hera cheyenne hercules | baseline | -COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON | + hera cheyenne hercules | fv3 | +COMPILE | rrfs | gnu | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | + hera cheyenne hercules | fv3 | RUN | rap_control | + hera cheyenne hercules | baseline | RUN | rap_decomp | + hera cheyenne hercules | | RUN | rap_2threads | + hera cheyenne hercules | | @@ -330,10 +329,6 @@ RUN | hrrr_control_decomp | + hera cheyenne hercul RUN | hrrr_control_restart | + hera cheyenne hercules | | hrrr_control RUN | hrrr_control_restart_qr | + hera cheyenne hercules | | hrrr_control_qr RUN | rrfs_v1beta | + hera cheyenne hercules | baseline | -RUN | hrrr_gf | + hera cheyenne hercules | baseline | - -# Crashes on Cheyenne -# RUN | hrrr_c3 | + hera cheyenne hercules | baseline | ### CCPP DEBUG tests ### # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) @@ -342,6 +337,8 @@ RUN | control_diag_debug | + hera cheyenne hercul RUN | regional_debug | + hera cheyenne hercules | baseline | RUN | rap_control_debug | + hera cheyenne hercules | baseline | RUN | hrrr_control_debug | + hera cheyenne hercules | baseline | +RUN | hrrr_gf_debug | + hera cheyenne hercules | baseline | +RUN | hrrr_c3_debug | + hera cheyenne hercules | baseline | RUN | rap_diag_debug | + hera cheyenne hercules | baseline | RUN | rap_noah_sfcdiff_cires_ugwp_debug | + hera cheyenne hercules | baseline | RUN | rap_progcld_thompson_debug | + hera cheyenne hercules | baseline | @@ -373,10 +370,8 @@ RUN | conus13km_2threads | + hera cheyenne hercul RUN | conus13km_restart_mismatch | + hera cheyenne hercules | baseline | conus13km_control # Expected to fail: -# RUN | conus13km_restart | + hera cheyenne hercules | | conus13km_control -# RUN | conus13km_decomp | + hera cheyenne hercules | | conus13km_control -# RUN | conus13km_control_qr | + hera cheyenne hercules | baseline | -# RUN | conus13km_restart_qr_mismatch | + hera cheyenne hercules | baseline | conus13km_control +# RUN | conus13km_restart | + hera cheyenne hercules | | conus13km_control +# RUN | conus13km_decomp | + hera cheyenne hercules | | conus13km_control COMPILE | atm_dyn64_phy32 | gnu | -DAPP=ATM -DCCPP_32BIT=ON | + hera cheyenne hercules | fv3 | RUN | rap_control_dyn64_phy32 | + hera cheyenne hercules | baseline | @@ -385,6 +380,7 @@ COMPILE | atm_dyn32_phy32_debug | gnu | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DD RUN | rap_control_debug_dyn32_phy32 | + hera cheyenne hercules | baseline | RUN | hrrr_control_debug_dyn32_phy32 | + hera cheyenne hercules | baseline | RUN | conus13km_debug | + hera cheyenne hercules | baseline | +RUN | conus13km_debug_qr | + hera hercules | | RUN | conus13km_debug_2threads | + hera cheyenne hercules | | RUN | conus13km_radar_tten_debug | + hera cheyenne hercules | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 27d278c060..137a637b03 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -310,6 +310,13 @@ elif [[ $MACHINE_ID = gaea ]]; then export PATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/bin:$PATH export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + module use /lustre/f2/dev/Samuel.Trahan/hafs/modulefiles/ + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + module use /lustre/f2/pdata/esrl/gsd/spack-stack/modulefiles module load ecflow/5.8.4 ECFLOW_START=/lustre/f2/pdata/esrl/gsd/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh @@ -457,6 +464,14 @@ elif [[ $MACHINE_ID = cheyenne ]]; then export PATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/bin:$PATH export PYTHONPATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + module use /gpfs/fs1/work/strahan/rocoto/modulefiles + module load rocoto/1.3.3 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro + ROCOTO_NODESIZE=36 + module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc module load ecflow/5.8.4 ECFLOW_START=/glade/work/jedipara/cheyenne/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh @@ -550,6 +565,17 @@ else RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} fi +if [[ "$CREATE_BASELINE" == false ]] ; then + if [[ ! -d "$RTPWD" ]] ; then + echo "Baseline directory does not exist:" + echo " $RTPWD" + exit 1 + elif [[ $( ls -1 "$RTPWD/" | wc -l ) -lt 1 ]] ; then + echo "Baseline directory is empty:" + echo " $RTPWD" + exit 1 + fi +fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624 @@ -639,6 +665,14 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = cheyenne ]]; then + QUEUE=regular + COMPILE_QUEUE=regular + ROCOTO_SCHEDULER=pbspro + elif [[ $MACHINE_ID = gaea ]]; then + QUEUE=normal + COMPILE_QUEUE=normal + ROCOTO_SCHEDULER=slurm else die "Rocoto is not supported on this machine $MACHINE_ID" fi diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 26c2e7ddba..0bdba5ab60 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -469,6 +469,9 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ $MACHINE_ID == gaea ]]; then + BUILD_WALLTIME="01:00:00" + fi cat << EOF >> $ROCOTO_XML @@ -476,7 +479,21 @@ rocoto_create_compile_task() { compile_${COMPILE_NR} ${ACCNR} ${COMPILE_QUEUE} +EOF + + if [[ "$MACHINE_ID" == gaea ]] ; then + cat << EOF >> $ROCOTO_XML + --clusters=es + eslogin + --exclude=gaea9 +EOF + else + cat << EOF >> $ROCOTO_XML ${PARTITION} +EOF + fi + + cat << EOF >> $ROCOTO_XML ${BUILD_CORES} ${BUILD_WALLTIME} &RUNDIR_ROOT;/compile_${COMPILE_NR}.log @@ -506,8 +523,21 @@ rocoto_create_run_task() { &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX} ${ACCNR} + ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} +EOF + + if [[ "$MACHINE_ID" == gaea ]] ; then + cat << EOF >> $ROCOTO_XML + --clusters=${PARTITION} +EOF + else + cat << EOF >> $ROCOTO_XML ${QUEUE} ${PARTITION} +EOF + fi + + cat << EOF >> $ROCOTO_XML ${NODES}:ppn=${TPN} 00:${WLCLK}:00 &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.out diff --git a/tests/tests/conus13km_debug b/tests/tests/conus13km_debug index b59b8124a0..0b76e714ab 100644 --- a/tests/tests/conus13km_debug +++ b/tests/tests/conus13km_debug @@ -14,7 +14,14 @@ export CNTL_DIR=conus13km_debug export LIST_FILES="sfcf000.nc \ sfcf001.nc \ atmf000.nc \ - atmf001.nc" + atmf001.nc \ + RESTART/20210512.170000.coupler.res \ + RESTART/20210512.170000.fv_core.res.nc \ + RESTART/20210512.170000.fv_core.res.tile1.nc \ + RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210512.170000.fv_tracer.res.tile1.nc \ + RESTART/20210512.170000.phy_data.nc \ + RESTART/20210512.170000.sfc_data.nc" export_hrrr_conus13km export RESTART_INTERVAL=1 diff --git a/tests/tests/conus13km_control_qr b/tests/tests/conus13km_debug_qr similarity index 91% rename from tests/tests/conus13km_control_qr rename to tests/tests/conus13km_debug_qr index 0106dc8ad2..03b59ec451 100644 --- a/tests/tests/conus13km_control_qr +++ b/tests/tests/conus13km_debug_qr @@ -9,14 +9,12 @@ export TEST_DESCR="HRRR physics on 13km domain, control" -export CNTL_DIR=conus13km_control_qr +export CNTL_DIR=conus13km_debug export LIST_FILES="sfcf000.nc \ sfcf001.nc \ - sfcf002.nc \ atmf000.nc \ atmf001.nc \ - atmf002.nc \ RESTART/20210512.170000.coupler.res \ RESTART/20210512.170000.fv_core.res.nc \ RESTART/20210512.170000.fv_core.res.tile1.nc \ @@ -28,3 +26,4 @@ export LIST_FILES="sfcf000.nc \ export_hrrr_conus13km export RESTART_INTERVAL=1 export QUILTING_RESTART=.true. +export FHMAX=1 diff --git a/tests/tests/conus13km_restart_qr b/tests/tests/conus13km_restart_qr deleted file mode 100644 index 9fb8358c6d..0000000000 --- a/tests/tests/conus13km_restart_qr +++ /dev/null @@ -1,21 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, restart run" - -export CNTL_DIR=conus13km_control - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_hrrr_conus13km -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES diff --git a/tests/tests/conus13km_restart_qr_mismatch b/tests/tests/conus13km_restart_qr_mismatch deleted file mode 100644 index fecdd4d63b..0000000000 --- a/tests/tests/conus13km_restart_qr_mismatch +++ /dev/null @@ -1,21 +0,0 @@ -############################################################################### -# -# HRRR physics on 13km domain, restart run -# -############################################################################### - -# This configuration is supposed to match the rrfs_dev1 parallel, so -# do not change the namelist without checking the current parallel. - -export TEST_DESCR="HRRR physics on 13km domain, restart run" - -export CNTL_DIR=conus13km_restart_qr_mismatch - -export LIST_FILES="sfcf002.nc \ - atmf002.nc" - -export_hrrr_conus13km -export QUILTING_RESTART=.true. -export FHROT=1 -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" -export RRFS_RESTART=YES diff --git a/tests/tests/hrrr_c3 b/tests/tests/hrrr_c3 deleted file mode 100644 index a5a0235626..0000000000 --- a/tests/tests/hrrr_c3 +++ /dev/null @@ -1,63 +0,0 @@ -############################################################################### -# -# HRRR C3 scheme test: atmosphere only at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare HRRR CLM Lake C3 convection results with previous trunk version" - -export CNTL_DIR=hrrr_c3 - -export LIST_FILES="sfcf000.nc \ - sfcf009.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf009.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF09 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF09 \ - GFSPRS.GrbF12 \ - RESTART/20210322.120000.coupler.res \ - RESTART/20210322.120000.fv_core.res.nc \ - RESTART/20210322.120000.fv_core.res.tile1.nc \ - RESTART/20210322.120000.fv_core.res.tile2.nc \ - RESTART/20210322.120000.fv_core.res.tile3.nc \ - RESTART/20210322.120000.fv_core.res.tile4.nc \ - RESTART/20210322.120000.fv_core.res.tile5.nc \ - RESTART/20210322.120000.fv_core.res.tile6.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.120000.fv_tracer.res.tile1.nc \ - RESTART/20210322.120000.fv_tracer.res.tile2.nc \ - RESTART/20210322.120000.fv_tracer.res.tile3.nc \ - RESTART/20210322.120000.fv_tracer.res.tile4.nc \ - RESTART/20210322.120000.fv_tracer.res.tile5.nc \ - RESTART/20210322.120000.fv_tracer.res.tile6.nc \ - RESTART/20210322.120000.phy_data.tile1.nc \ - RESTART/20210322.120000.phy_data.tile2.nc \ - RESTART/20210322.120000.phy_data.tile3.nc \ - RESTART/20210322.120000.phy_data.tile4.nc \ - RESTART/20210322.120000.phy_data.tile5.nc \ - RESTART/20210322.120000.phy_data.tile6.nc \ - RESTART/20210322.120000.sfc_data.tile1.nc \ - RESTART/20210322.120000.sfc_data.tile2.nc \ - RESTART/20210322.120000.sfc_data.tile3.nc \ - RESTART/20210322.120000.sfc_data.tile4.nc \ - RESTART/20210322.120000.sfc_data.tile5.nc \ - RESTART/20210322.120000.sfc_data.tile6.nc" - -export_hrrr -export RESTART_INTERVAL="6 -1" -export OUTPUT_FH='0 09 12' -export CCPP_SUITE=FV3_HRRR_c3 -export DO_DEEP=.true. -export SHAL_CNV=.true. -export IMFSHALCNV=5 -export IMFDEEPCNV=5 diff --git a/tests/tests/hrrr_c3_debug b/tests/tests/hrrr_c3_debug new file mode 100644 index 0000000000..5803873597 --- /dev/null +++ b/tests/tests/hrrr_c3_debug @@ -0,0 +1,24 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" + +export CNTL_DIR=hrrr_c3_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 1' +export FHMAX=1 +export CCPP_SUITE=FV3_HRRR_c3 +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=5 +export IMFDEEPCNV=5 diff --git a/tests/tests/hrrr_gf b/tests/tests/hrrr_gf deleted file mode 100644 index 74470cace1..0000000000 --- a/tests/tests/hrrr_gf +++ /dev/null @@ -1,63 +0,0 @@ -############################################################################### -# -# HRRR GF scheme test: atmosphere only at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare HRRR CLM Lake GF convection results with previous trunk version" - -export CNTL_DIR=hrrr_gf - -export LIST_FILES="sfcf000.nc \ - sfcf009.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf009.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF09 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF09 \ - GFSPRS.GrbF12 \ - RESTART/20210322.120000.coupler.res \ - RESTART/20210322.120000.fv_core.res.nc \ - RESTART/20210322.120000.fv_core.res.tile1.nc \ - RESTART/20210322.120000.fv_core.res.tile2.nc \ - RESTART/20210322.120000.fv_core.res.tile3.nc \ - RESTART/20210322.120000.fv_core.res.tile4.nc \ - RESTART/20210322.120000.fv_core.res.tile5.nc \ - RESTART/20210322.120000.fv_core.res.tile6.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.120000.fv_tracer.res.tile1.nc \ - RESTART/20210322.120000.fv_tracer.res.tile2.nc \ - RESTART/20210322.120000.fv_tracer.res.tile3.nc \ - RESTART/20210322.120000.fv_tracer.res.tile4.nc \ - RESTART/20210322.120000.fv_tracer.res.tile5.nc \ - RESTART/20210322.120000.fv_tracer.res.tile6.nc \ - RESTART/20210322.120000.phy_data.tile1.nc \ - RESTART/20210322.120000.phy_data.tile2.nc \ - RESTART/20210322.120000.phy_data.tile3.nc \ - RESTART/20210322.120000.phy_data.tile4.nc \ - RESTART/20210322.120000.phy_data.tile5.nc \ - RESTART/20210322.120000.phy_data.tile6.nc \ - RESTART/20210322.120000.sfc_data.tile1.nc \ - RESTART/20210322.120000.sfc_data.tile2.nc \ - RESTART/20210322.120000.sfc_data.tile3.nc \ - RESTART/20210322.120000.sfc_data.tile4.nc \ - RESTART/20210322.120000.sfc_data.tile5.nc \ - RESTART/20210322.120000.sfc_data.tile6.nc" - -export_hrrr -export RESTART_INTERVAL="6 -1" -export OUTPUT_FH='0 09 12' -export CCPP_SUITE=FV3_HRRR_gf -export DO_DEEP=.true. -export SHAL_CNV=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 diff --git a/tests/tests/hrrr_gf_debug b/tests/tests/hrrr_gf_debug new file mode 100644 index 0000000000..4e12956402 --- /dev/null +++ b/tests/tests/hrrr_gf_debug @@ -0,0 +1,24 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" + +export CNTL_DIR=hrrr_gf_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_hrrr +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 1' +export FHMAX=1 +export CCPP_SUITE=FV3_HRRR_gf +export DO_DEEP=.true. +export SHAL_CNV=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 From b11a2a584a3c2653a3b88b13cdc1e6fd84f96511 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Sun, 3 Dec 2023 17:55:39 -0500 Subject: [PATCH 07/10] add tests/machine files --- tests/machine/acorn | 2 +- tests/machine/cheyenne | 8 ++++++++ tests/machine/cheyenne.ncar | 17 ++++++++++++++--- tests/machine/gaea | 19 +++++++++++++++---- tests/machine/hera.ncar | 6 +++--- tests/machine/jet | 4 ++-- tests/machine/noaacloud | 1 + tests/machine/orion | 12 ++++++++---- tests/machine/s4 | 8 +++++--- tests/machine/wcoss | 2 +- 10 files changed, 58 insertions(+), 21 deletions(-) diff --git a/tests/machine/acorn b/tests/machine/acorn index 0982088601..10be88806a 100644 --- a/tests/machine/acorn +++ b/tests/machine/acorn @@ -1,5 +1,5 @@ module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 + module load intel/19.1.3.304 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir export ECF_COMDIR=${PATHRT}/ecf_comdir diff --git a/tests/machine/cheyenne b/tests/machine/cheyenne index 54919f143d..3e5d1ef806 100644 --- a/tests/machine/cheyenne +++ b/tests/machine/cheyenne @@ -1,6 +1,14 @@ export PATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/bin:$PATH export PYTHONPATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + module use /gpfs/fs1/work/strahan/rocoto/modulefiles + module load rocoto/1.3.3 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro + ROCOTO_NODESIZE=36 + module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc module load ecflow/5.8.4 ECFLOW_START=/glade/work/jedipara/cheyenne/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh diff --git a/tests/machine/cheyenne.ncar b/tests/machine/cheyenne.ncar index 0e71913ea7..7bc3a6aa94 100644 --- a/tests/machine/cheyenne.ncar +++ b/tests/machine/cheyenne.ncar @@ -1,7 +1,18 @@ source bl_date.ncar.conf - export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + export PATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/bin:$PATH + export PYTHONPATH=/glade/work/jedipara/cheyenne/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + + module use /gpfs/fs1/work/strahan/rocoto/modulefiles + module load rocoto/1.3.3 + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro + ROCOTO_NODESIZE=36 + + module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc + module load ecflow/5.8.4 + ECFLOW_START=/glade/work/jedipara/cheyenne/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=regular diff --git a/tests/machine/gaea b/tests/machine/gaea index 16bef941cc..4b9b47efdb 100644 --- a/tests/machine/gaea +++ b/tests/machine/gaea @@ -1,9 +1,20 @@ - export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + export PATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/spack-stack/miniconda-3.9.12/lib/python3.9/site-packages + + module use /lustre/f2/dev/Samuel.Trahan/hafs/modulefiles/ + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + + module use /lustre/f2/pdata/esrl/gsd/spack-stack/modulefiles + module load ecflow/5.8.4 + + ECFLOW_START=/lustre/f2/pdata/esrl/gsd/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT + DISKNM=/lustre/f2/pdata/ncep/role.epic/RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c4 diff --git a/tests/machine/hera.ncar b/tests/machine/hera.ncar index 56b0e3a33d..04c58c4aeb 100644 --- a/tests/machine/hera.ncar +++ b/tests/machine/hera.ncar @@ -7,11 +7,11 @@ ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 + PYTHONHOME=/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/miniconda-3.9.12 export PATH=$PYTHONHOME/bin:$PATH - export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages + export PYTHONPATH=$PYTHONHOME/lib/python3.9/site-packages - module load ecflow + module load ecflow/5.5.3 ECFLOW_START=ecflow_start.sh QUEUE=batch diff --git a/tests/machine/jet b/tests/machine/jet index a82b8eccd5..02db3f9e8c 100644 --- a/tests/machine/jet +++ b/tests/machine/jet @@ -4,8 +4,8 @@ ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + export PATH=/lfs4/HFIP/hfv3gfs/spack-stack/apps/miniconda/py39_4.12.0/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/spack-stack/apps/miniconda/py39_4.12.0/lib/python3.9/site-packages module load ecflow ECFLOW_START=/apps/ecflow/5.5.3/bin/ecflow_start.sh diff --git a/tests/machine/noaacloud b/tests/machine/noaacloud index 53333ef6a7..735f633133 100644 --- a/tests/machine/noaacloud +++ b/tests/machine/noaacloud @@ -1,3 +1,4 @@ + export PATH=/contrib/EPIC/bin:$PATH module use /apps/modules/modulefiles module load rocoto/1.3.3 diff --git a/tests/machine/orion b/tests/machine/orion index 679210d1a7..45c265054f 100644 --- a/tests/machine/orion +++ b/tests/machine/orion @@ -6,16 +6,20 @@ ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) - export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH - export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - ECFLOW_START=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh + export PATH=/work/noaa/da/role-da/spack-stack/miniconda-3.9.7/bin:$PATH + export PYTHONPATH=/work/noaa/da/role-da/spack-stack/miniconda-3.9.7/lib/python3.9/site-packages + + module use /work/noaa/da/role-da/spack-stack/modulefiles + module load miniconda/3.9.7 + module load ecflow/5.8.4 + ECFLOW_START=/work/noaa/da/role-da/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch COMPILE_QUEUE=batch PARTITION=orion dprefix=/work/noaa/stmp/${USER} - DISKNM=/work/noaa/nems/emc.nemspara/RT + DISKNM=/work/noaa/epic/UFS-WM_RT STMP=$dprefix/stmp PTMP=$dprefix/stmp diff --git a/tests/machine/s4 b/tests/machine/s4 index 79069c7087..f5a1897f5c 100644 --- a/tests/machine/s4 +++ b/tests/machine/s4 @@ -1,12 +1,14 @@ module load rocoto/1.3.2 - module load ecflow/5.6.0 - module load miniconda/3.8-s4 ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - ECFLOW_START=/opt/ecflow/5.6.0/bin/ecflow_start.sh + module load git/2.30.0 + module use /data/prod/jedi/spack-stack/modulefiles + module load miniconda/3.9.12 + module load ecflow/5.8.4 + ECFLOW_START=/data/prod/jedi/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=s4 diff --git a/tests/machine/wcoss b/tests/machine/wcoss index 1d77b3afa0..4c8fdd8d89 100644 --- a/tests/machine/wcoss +++ b/tests/machine/wcoss @@ -6,7 +6,7 @@ #ROCOTO_SCHEDULER=lsf module load ecflow/5.6.0.13 - module load gcc/10.3.0 python/3.8.6 + module load intel/19.1.3.304 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir export ECF_COMDIR=${PATHRT}/ecf_comdir From 5fe703e615cfdfa4843da221e11d366987bf38da Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 25 Jan 2024 15:43:39 -0500 Subject: [PATCH 08/10] manually add in changes to rt.sh --- tests/rt.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/tests/rt.sh b/tests/rt.sh index 0632f1a321..16541380b1 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -288,6 +288,18 @@ else RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} fi +if [[ "$CREATE_BASELINE" == false ]] ; then + if [[ ! -d "$RTPWD" ]] ; then + echo "Baseline directory does not exist:" + echo " $RTPWD" + exit 1 + elif [[ $( ls -1 "$RTPWD/" | wc -l ) -lt 1 ]] ; then + echo "Baseline directory is empty:" + echo " $RTPWD" + exit 1 + fi +fi + INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} @@ -321,8 +333,11 @@ echo "Start Regression test" >> ${REGRESSIONTEST_LOG} echo >> ${REGRESSIONTEST_LOG} echo "Testing UFSWM Hash:" `git rev-parse HEAD` >> ${REGRESSIONTEST_LOG} echo "Testing With Submodule Hashes:" >> ${REGRESSIONTEST_LOG} +cd .. git submodule status >> ${REGRESSIONTEST_LOG} +cd tests + source default_vars.sh JOB_NR=0 @@ -354,6 +369,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = hercules ]]; then + QUEUE=windfall + COMPILE_QUEUE=windfall + ROCOTO_SCHEDULER=slurm elif [[ $MACHINE_ID = s4 ]]; then QUEUE=s4 COMPILE_QUEUE=s4 @@ -366,6 +385,14 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = cheyenne ]]; then + QUEUE=regular + COMPILE_QUEUE=regular + ROCOTO_SCHEDULER=pbspro + elif [[ $MACHINE_ID = gaea ]]; then + QUEUE=normal + COMPILE_QUEUE=normal + ROCOTO_SCHEDULER=slurm else die "Rocoto is not supported on this machine $MACHINE_ID" fi @@ -430,6 +457,8 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = orion ]]; then QUEUE=batch + elif [[ $MACHINE_ID = hercules ]]; then + QUEUE=windfall elif [[ $MACHINE_ID = jet ]]; then QUEUE=batch elif [[ $MACHINE_ID = s4 ]]; then From be9fa158fcdc0dc9aa8522a6556aa1c0228765bc Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Tue, 30 Jan 2024 19:58:10 +0000 Subject: [PATCH 09/10] add successful log and update bl_date.ncar.conf --- tests/bl_date.ncar.conf | 2 +- tests/logs/RegressionTests_hera.log | 11598 ++++++++++---------------- 2 files changed, 4453 insertions(+), 7147 deletions(-) diff --git a/tests/bl_date.ncar.conf b/tests/bl_date.ncar.conf index 19582d97a6..255c5004a0 100644 --- a/tests/bl_date.ncar.conf +++ b/tests/bl_date.ncar.conf @@ -1,2 +1,2 @@ -export BL_DATE=20240117 +export BL_DATE=20240126 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 89356911dc..e9bb150edc 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7855 +1,5161 @@ -Wed Jan 24 23:35:35 UTC 2024 +Mon Jan 29 20:37:47 UTC 2024 Start Regression test -Testing UFSWM Hash: b0ea255c4d6719506a6b866a98dbbf4bfc9797a1 +Testing UFSWM Hash: 5fe703e615cfdfa4843da221e11d366987bf38da Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 ../AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb ../CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 2ed3c05c3c515eb70af3a726ff392283af97c4a5 ../CICE-interface/CICE (CICE6.0.0-442-g2ed3c05) - c24fb5999efafffaa393b886e21780ab7fd3aa08 ../CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 ../CMakeModules (v1.0.0-28-gcabd775) - 1a1e3058a0d88b43c8572067bfb7fbaf13224f14 ../FV3 (remotes/origin/ufs-dev-PR97) - 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 ../GOCART (sdr_v2.1.2.6-106-g6ea78fd) - 35789c757766e07f688b4c0c7c5229816f224b09 ../HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - be40a41360b2eaed31ae86582aa57e1cf41241d5 ../MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) - 569e354ababbde7a7cd68647533769a5c966468d ../NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f ../WW3 (6.07.1-342-g97e6a63e) - 1ee7cc9a8b5d5733b391127ca31059b497ecdea8 ../stochastic_physics (ufs-v2.0.0-181-g1ee7cc9) -Compile atm_debug_dyn32_intel elapsed time 239 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 599 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 166 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 171 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 260 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 552 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 555 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 520 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 558 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 602 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 198 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 25f1c54506ef74c0a496c4a1f3a20e3c3701cba8 CICE-interface/CICE (CICE6.0.0-443-g25f1c54) + c24fb5999efafffaa393b886e21780ab7fd3aa08 CMEPS-interface/CMEPS (cmeps_v0.4.1-1404-gc24fb59) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + ff47354515ee6221dbc356b9bfdf622f9fad4161 FV3 (GFSv17.HR2-33-gff47354) + 6ea78fd79037b31a1dcdd30d8a315f6558d963e4 GOCART (sdr_v2.1.2.6-106-g6ea78fd) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + be40a41360b2eaed31ae86582aa57e1cf41241d5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9801-gbe40a4136) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 97e6a63ebf9a9030fcdae6ad5cf85a0bc91fa37f WW3 (6.07.1-342-g97e6a63e) + 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) +Compile atm_debug_dyn32_intel elapsed time 248 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 167 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 602 seconds. -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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 173 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 168 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 266 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 543 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 192 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 546 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 553 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 547 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 187 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_gnu elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 74 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 591 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 218 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 624 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 651 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 598 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl,FV3_HRRR_gf,FV3_HRRR_c3 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 219 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 603 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 633 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 122 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 664 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 126 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 242 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 963 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 254 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 666 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 93 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 568 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 204 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 614 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 592 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 223 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 218 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 629 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 118 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 234 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 658 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 129 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 968 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 250 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 90 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_mixedmode_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_p8_mixedmode_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 318.922376 - 0: The maximum resident set size (KB) = 3160572 +Moving baseline 001 cpld_control_p8_mixedmode_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 304.888373 + 0: The maximum resident set size (KB) = 3156328 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 220.379701 - 0: The maximum resident set size (KB) = 1694704 +Moving baseline 002 cpld_control_gfsv17_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 215.786832 + 0: The maximum resident set size (KB) = 1698740 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_intel Checking test 003 cpld_control_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 347.093497 - 0: The maximum resident set size (KB) = 3125952 +Moving baseline 003 cpld_control_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 345.071517 + 0: The maximum resident set size (KB) = 3177044 Test 003 cpld_control_p8_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_restart_p8_intel -Checking test 004 cpld_restart_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 197.274280 - 0: The maximum resident set size (KB) = 3243544 - -Test 004 cpld_restart_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_qr_p8_intel -Checking test 005 cpld_control_qr_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 344.595579 - 0: The maximum resident set size (KB) = 3197488 - -Test 005 cpld_control_qr_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_restart_qr_p8_intel -Checking test 006 cpld_restart_qr_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 204.704184 - 0: The maximum resident set size (KB) = 3060348 - -Test 006 cpld_restart_qr_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_2threads_p8_intel -Checking test 007 cpld_2threads_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 330.060089 - 0: The maximum resident set size (KB) = 3539320 - -Test 007 cpld_2threads_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_decomp_p8_intel -Checking test 008 cpld_decomp_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 350.918380 - 0: The maximum resident set size (KB) = 3143536 - -Test 008 cpld_decomp_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_mpi_p8_intel -Checking test 009 cpld_mpi_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 287.830520 - 0: The maximum resident set size (KB) = 3048028 - -Test 009 cpld_mpi_p8_intel PASS - - baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_ciceC_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_ciceC_p8_intel -Checking test 010 cpld_control_ciceC_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 346.235036 - 0: The maximum resident set size (KB) = 3188028 - -Test 010 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c192_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_c192_p8_intel -Checking test 011 cpld_control_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 600.776534 - 0: The maximum resident set size (KB) = 3318028 - -Test 011 cpld_control_c192_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_ciceC_p8_intel +Checking test 004 cpld_control_ciceC_p8_intel results .... +Moving baseline 004 cpld_control_ciceC_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 340.083085 + 0: The maximum resident set size (KB) = 3174128 + +Test 004 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c192_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_restart_c192_p8_intel -Checking test 012 cpld_restart_c192_p8_intel results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 373.033878 - 0: The maximum resident set size (KB) = 3578264 - -Test 012 cpld_restart_c192_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_bmark_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_bmark_p8_intel -Checking test 013 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 668.549724 - 0: The maximum resident set size (KB) = 4142536 - -Test 013 cpld_bmark_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_c192_p8_intel +Checking test 005 cpld_control_c192_p8_intel results .... +Moving baseline 005 cpld_control_c192_p8_intel files .... + Moving sfcf030.tile1.nc .........OK + Moving sfcf030.tile2.nc .........OK + Moving sfcf030.tile3.nc .........OK + Moving sfcf030.tile4.nc .........OK + Moving sfcf030.tile5.nc .........OK + Moving sfcf030.tile6.nc .........OK + Moving atmf030.tile1.nc .........OK + Moving atmf030.tile2.nc .........OK + Moving atmf030.tile3.nc .........OK + Moving atmf030.tile4.nc .........OK + Moving atmf030.tile5.nc .........OK + Moving atmf030.tile6.nc .........OK + Moving gocart.inst_aod.20210323_1200z.nc4 .........OK + Moving RESTART/20210323.120000.coupler.res .........OK + Moving RESTART/20210323.120000.fv_core.res.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.120000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-43200.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Moving 20210323.120000.out_grd.ww3 .........OK + Moving 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 583.587152 + 0: The maximum resident set size (KB) = 3413044 + +Test 005 cpld_control_c192_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_bmark_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_restart_bmark_p8_intel -Checking test 014 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 481.626994 - 0: The maximum resident set size (KB) = 4364948 - -Test 014 cpld_restart_bmark_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_bmark_p8_intel +Checking test 006 cpld_bmark_p8_intel results .... +Moving baseline 006 cpld_bmark_p8_intel files .... + Moving sfcf006.nc .........OK + Moving atmf006.nc .........OK + Moving GFSFLX.GrbF06 .........OK + Moving GFSPRS.GrbF06 .........OK + Moving gocart.inst_aod.20130401_0600z.nc4 .........OK + Moving RESTART/20130401.060000.coupler.res .........OK + Moving RESTART/20130401.060000.fv_core.res.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile1.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile2.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile3.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile4.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile5.nc .........OK + Moving RESTART/20130401.060000.phy_data.tile6.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20130401.060000.MOM.res.nc .........OK + Moving RESTART/20130401.060000.MOM.res_1.nc .........OK + Moving RESTART/20130401.060000.MOM.res_2.nc .........OK + Moving RESTART/20130401.060000.MOM.res_3.nc .........OK + Moving RESTART/iced.2013-04-01-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Moving 20130401.060000.out_pnt.ww3 .........OK + Moving 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 627.505965 + 0: The maximum resident set size (KB) = 4102796 + +Test 006 cpld_bmark_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_noaero_p8_intel -Checking test 015 cpld_control_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 264.763987 - 0: The maximum resident set size (KB) = 1705824 - -Test 015 cpld_control_noaero_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_noaero_p8_intel +Checking test 007 cpld_control_noaero_p8_intel results .... +Moving baseline 007 cpld_control_noaero_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 261.362452 + 0: The maximum resident set size (KB) = 1724832 + +Test 007 cpld_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c96_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_nowave_noaero_p8_intel -Checking test 016 cpld_control_nowave_noaero_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 308.941662 - 0: The maximum resident set size (KB) = 1710008 - -Test 016 cpld_control_nowave_noaero_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_nowave_noaero_p8_intel +Checking test 008 cpld_control_nowave_noaero_p8_intel results .... +Moving baseline 008 cpld_control_nowave_noaero_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 259.801786 + 0: The maximum resident set size (KB) = 1786404 + +Test 008 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_debug_p8_intel -Checking test 017 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 518.902464 - 0: The maximum resident set size (KB) = 3233064 - -Test 017 cpld_debug_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_p8_intel +Checking test 009 cpld_debug_p8_intel results .... +Moving baseline 009 cpld_debug_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 508.201409 + 0: The maximum resident set size (KB) = 3242400 + +Test 009 cpld_debug_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_debug_noaero_p8_intel -Checking test 018 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 349.626295 - 0: The maximum resident set size (KB) = 1749776 - -Test 018 cpld_debug_noaero_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_noaero_p8_intel +Checking test 010 cpld_debug_noaero_p8_intel results .... +Moving baseline 010 cpld_debug_noaero_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 351.380603 + 0: The maximum resident set size (KB) = 1741952 + +Test 010 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_noaero_p8_agrid_intel -Checking test 019 cpld_control_noaero_p8_agrid_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 265.546982 - 0: The maximum resident set size (KB) = 1770116 - -Test 019 cpld_control_noaero_p8_agrid_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_noaero_p8_agrid_intel +Checking test 011 cpld_control_noaero_p8_agrid_intel results .... +Moving baseline 011 cpld_control_noaero_p8_agrid_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 257.467285 + 0: The maximum resident set size (KB) = 1772140 + +Test 011 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_c48_intel -Checking test 020 cpld_control_c48_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 587.607401 - 0: The maximum resident set size (KB) = 2824692 - -Test 020 cpld_control_c48_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_c48_intel +Checking test 012 cpld_control_c48_intel results .... +Moving baseline 012 cpld_control_c48_intel files .... + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 577.822339 + 0: The maximum resident set size (KB) = 2805176 + +Test 012 cpld_control_c48_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_p8_faster_intel -Checking test 021 cpld_control_p8_faster_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 340.205015 - 0: The maximum resident set size (KB) = 3141692 - -Test 021 cpld_control_p8_faster_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_faster_intel +Checking test 013 cpld_control_p8_faster_intel results .... +Moving baseline 013 cpld_control_p8_faster_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 321.335960 + 0: The maximum resident set size (KB) = 3207544 + +Test 013 cpld_control_p8_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_pdlib_p8_intel -Checking test 022 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1197.502182 - 0: The maximum resident set size (KB) = 1768900 - -Test 022 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_restart_pdlib_p8_intel -Checking test 023 cpld_restart_pdlib_p8_intel results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 567.491589 - 0: The maximum resident set size (KB) = 1149056 - -Test 023 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_mpi_pdlib_p8_intel -Checking test 024 cpld_mpi_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1089.837053 - 0: The maximum resident set size (KB) = 1668248 - -Test 024 cpld_mpi_pdlib_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_pdlib_p8_intel +Checking test 014 cpld_control_pdlib_p8_intel results .... +Moving baseline 014 cpld_control_pdlib_p8_intel files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1190.792553 + 0: The maximum resident set size (KB) = 1762360 + +Test 014 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_debug_pdlib_p8_intel -Checking test 025 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1388.576390 - 0: The maximum resident set size (KB) = 1703660 - -Test 025 cpld_debug_pdlib_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_pdlib_p8_intel +Checking test 015 cpld_debug_pdlib_p8_intel results .... +Moving baseline 015 cpld_debug_pdlib_p8_intel files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1352.505242 + 0: The maximum resident set size (KB) = 1711976 + +Test 015 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_flake_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_flake_intel -Checking test 026 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_flake_intel +Checking test 016 control_flake_intel results .... +Moving baseline 016 control_flake_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.925943 - 0: The maximum resident set size (KB) = 691204 + 0: The total amount of wall time = 191.802178 + 0: The maximum resident set size (KB) = 689468 -Test 026 control_flake_intel PASS +Test 016 control_flake_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_CubedSphereGrid_intel -Checking test 027 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 136.822405 - 0: The maximum resident set size (KB) = 620164 - -Test 027 control_CubedSphereGrid_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_intel +Checking test 017 control_CubedSphereGrid_intel results .... +Moving baseline 017 control_CubedSphereGrid_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 132.109375 + 0: The maximum resident set size (KB) = 638472 + +Test 017 control_CubedSphereGrid_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_CubedSphereGrid_parallel_intel -Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 144.343527 - 0: The maximum resident set size (KB) = 644052 - -Test 028 control_CubedSphereGrid_parallel_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_parallel_intel +Checking test 018 control_CubedSphereGrid_parallel_intel results .... +Moving baseline 018 control_CubedSphereGrid_parallel_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving cubed_sphere_grid_sfcf000.nc .........OK + Moving cubed_sphere_grid_sfcf024.nc .........OK + Moving cubed_sphere_grid_atmf000.nc .........OK + Moving cubed_sphere_grid_atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 138.026479 + 0: The maximum resident set size (KB) = 629752 + +Test 018 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_latlon_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_latlon_intel -Checking test 029 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_latlon_intel +Checking test 019 control_latlon_intel results .... +Moving baseline 019 control_latlon_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.362836 - 0: The maximum resident set size (KB) = 645260 + 0: The total amount of wall time = 133.849339 + 0: The maximum resident set size (KB) = 634348 -Test 029 control_latlon_intel PASS +Test 019 control_latlon_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_wrtGauss_netcdf_parallel_intel -Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wrtGauss_netcdf_parallel_intel +Checking test 020 control_wrtGauss_netcdf_parallel_intel results .... +Moving baseline 020 control_wrtGauss_netcdf_parallel_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.334158 - 0: The maximum resident set size (KB) = 640828 + 0: The total amount of wall time = 137.092302 + 0: The maximum resident set size (KB) = 626696 -Test 030 control_wrtGauss_netcdf_parallel_intel PASS +Test 020 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_c48_intel -Checking test 031 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 365.996680 -0: The maximum resident set size (KB) = 824684 - -Test 031 control_c48_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c48_intel +Checking test 021 control_c48_intel results .... +Moving baseline 021 control_c48_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 372.119646 +0: The maximum resident set size (KB) = 830548 + +Test 021 control_c48_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c192_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_c192_intel -Checking test 032 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c192_intel +Checking test 022 control_c192_intel results .... +Moving baseline 022 control_c192_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.772174 - 0: The maximum resident set size (KB) = 788612 + 0: The total amount of wall time = 537.104865 + 0: The maximum resident set size (KB) = 786392 -Test 032 control_c192_intel PASS +Test 022 control_c192_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c384_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_c384_intel -Checking test 033 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c384_intel +Checking test 023 control_c384_intel results .... +Moving baseline 023 control_c384_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.026365 - 0: The maximum resident set size (KB) = 1377704 + 0: The total amount of wall time = 524.861715 + 0: The maximum resident set size (KB) = 1388224 -Test 033 control_c384_intel PASS +Test 023 control_c384_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c384gdas_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_c384gdas_intel -Checking test 034 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 477.221687 - 0: The maximum resident set size (KB) = 1484936 - -Test 034 control_c384gdas_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_stochy_intel -Checking test 035 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 90.070779 - 0: The maximum resident set size (KB) = 647032 - -Test 035 control_stochy_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c384gdas_intel +Checking test 024 control_c384gdas_intel results .... +Moving baseline 024 control_c384gdas_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf006.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF06 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF06 .........OK + Moving RESTART/20210322.060000.coupler.res .........OK + Moving RESTART/20210322.060000.fv_core.res.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 464.174838 + 0: The maximum resident set size (KB) = 1475104 + +Test 024 control_c384gdas_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_stochy_restart_intel -Checking test 036 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_intel +Checking test 025 control_stochy_intel results .... +Moving baseline 025 control_stochy_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.193813 - 0: The maximum resident set size (KB) = 555332 + 0: The total amount of wall time = 89.987876 + 0: The maximum resident set size (KB) = 640276 -Test 036 control_stochy_restart_intel PASS +Test 025 control_stochy_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_lndp_intel -Checking test 037 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_lndp_intel +Checking test 026 control_lndp_intel results .... +Moving baseline 026 control_lndp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.135514 - 0: The maximum resident set size (KB) = 645040 + 0: The total amount of wall time = 82.453733 + 0: The maximum resident set size (KB) = 640004 -Test 037 control_lndp_intel PASS +Test 026 control_lndp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_iovr4_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_iovr4_intel -Checking test 038 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 138.256849 - 0: The maximum resident set size (KB) = 636444 - -Test 038 control_iovr4_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_iovr4_intel +Checking test 027 control_iovr4_intel results .... +Moving baseline 027 control_iovr4_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 137.494310 + 0: The maximum resident set size (KB) = 645300 + +Test 027 control_iovr4_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_iovr5_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_iovr5_intel -Checking test 039 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 138.672844 - 0: The maximum resident set size (KB) = 636800 - -Test 039 control_iovr5_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_intel -Checking test 040 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 176.688601 - 0: The maximum resident set size (KB) = 1614276 - -Test 040 control_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_restart_p8_intel -Checking test 041 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 89.620574 - 0: The maximum resident set size (KB) = 928868 - -Test 041 control_restart_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_qr_p8_intel -Checking test 042 control_qr_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 175.767077 - 0: The maximum resident set size (KB) = 1613212 - -Test 042 control_qr_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_restart_qr_p8_intel -Checking test 043 control_restart_qr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 93.153828 - 0: The maximum resident set size (KB) = 872792 - -Test 043 control_restart_qr_p8_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_decomp_p8_intel -Checking test 044 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.536457 - 0: The maximum resident set size (KB) = 1588216 - -Test 044 control_decomp_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_iovr5_intel +Checking test 028 control_iovr5_intel results .... +Moving baseline 028 control_iovr5_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 137.175026 + 0: The maximum resident set size (KB) = 618188 + +Test 028 control_iovr5_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_2threads_p8_intel -Checking test 045 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 161.995768 - 0: The maximum resident set size (KB) = 1692704 - -Test 045 control_2threads_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_intel +Checking test 029 control_p8_intel results .... +Moving baseline 029 control_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 170.595804 + 0: The maximum resident set size (KB) = 1609404 + +Test 029 control_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_lndp_intel -Checking test 046 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 316.715338 - 0: The maximum resident set size (KB) = 1618132 - -Test 046 control_p8_lndp_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_lndp_intel +Checking test 030 control_p8_lndp_intel results .... +Moving baseline 030 control_p8_lndp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving sfcf048.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving atmf048.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSFLX.GrbF48 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 315.141834 + 0: The maximum resident set size (KB) = 1621964 + +Test 030 control_p8_lndp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_rrtmgp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_rrtmgp_intel -Checking test 047 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 231.550674 - 0: The maximum resident set size (KB) = 1672004 - -Test 047 control_p8_rrtmgp_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_rrtmgp_intel +Checking test 031 control_p8_rrtmgp_intel results .... +Moving baseline 031 control_p8_rrtmgp_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 222.893216 + 0: The maximum resident set size (KB) = 1684780 + +Test 031 control_p8_rrtmgp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_mynn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_mynn_intel -Checking test 048 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 174.563388 - 0: The maximum resident set size (KB) = 1611468 - -Test 048 control_p8_mynn_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_mynn_intel +Checking test 032 control_p8_mynn_intel results .... +Moving baseline 032 control_p8_mynn_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 174.835646 + 0: The maximum resident set size (KB) = 1601764 + +Test 032 control_p8_mynn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//merra2_thompson_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/merra2_thompson_intel -Checking test 049 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 198.579536 - 0: The maximum resident set size (KB) = 1618068 - -Test 049 merra2_thompson_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_control_intel -Checking test 050 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 295.819157 - 0: The maximum resident set size (KB) = 1102664 - -Test 050 regional_control_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_restart_intel -Checking test 051 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 151.408943 - 0: The maximum resident set size (KB) = 1084568 - -Test 051 regional_restart_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_control_qr_intel -Checking test 052 regional_control_qr_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 299.419343 - 0: The maximum resident set size (KB) = 1104736 - -Test 052 regional_control_qr_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_restart_qr_intel -Checking test 053 regional_restart_qr_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 152.226013 - 0: The maximum resident set size (KB) = 1072408 - -Test 053 regional_restart_qr_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 307.870621 - 0: The maximum resident set size (KB) = 1081364 - -Test 054 regional_decomp_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/merra2_thompson_intel +Checking test 033 merra2_thompson_intel results .... +Moving baseline 033 merra2_thompson_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 192.602636 + 0: The maximum resident set size (KB) = 1628568 + +Test 033 merra2_thompson_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_control_intel +Checking test 034 regional_control_intel results .... +Moving baseline 034 regional_control_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 179.272208 - 0: The maximum resident set size (KB) = 1076668 + 0: The total amount of wall time = 291.207814 + 0: The maximum resident set size (KB) = 1105464 -Test 055 regional_2threads_intel PASS +Test 034 regional_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_noquilt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_noquilt_intel -Checking test 056 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_noquilt_intel +Checking test 035 regional_noquilt_intel results .... +Moving baseline 035 regional_noquilt_intel files .... + Moving atmos_4xdaily.nc .........OK + Moving fv3_history2d.nc .........OK + Moving fv3_history.nc .........OK + Moving RESTART/fv_core.res.tile1_new.nc .........OK + Moving RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.208980 - 0: The maximum resident set size (KB) = 1365036 + 0: The total amount of wall time = 288.352831 + 0: The maximum resident set size (KB) = 1363132 -Test 056 regional_noquilt_intel PASS +Test 035 regional_noquilt_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_netcdf_parallel_intel -Checking test 057 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 284.877699 - 0: The maximum resident set size (KB) = 1092000 - -Test 057 regional_netcdf_parallel_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_netcdf_parallel_intel +Checking test 036 regional_netcdf_parallel_intel results .... +Moving baseline 036 regional_netcdf_parallel_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK - 0: The total amount of wall time = 295.958544 - 0: The maximum resident set size (KB) = 1096380 + 0: The total amount of wall time = 289.562909 + 0: The maximum resident set size (KB) = 1100352 -Test 058 regional_2dwrtdecomp_intel PASS +Test 036 regional_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//fv3_regional_wofs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_wofs_intel +Checking test 037 regional_wofs_intel results .... +Moving baseline 037 regional_wofs_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.427379 - 0: The maximum resident set size (KB) = 902396 + 0: The total amount of wall time = 373.302177 + 0: The maximum resident set size (KB) = 921324 -Test 059 regional_wofs_intel PASS +Test 037 regional_wofs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_intel -Checking test 060 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 448.138445 - 0: The maximum resident set size (KB) = 1232660 - -Test 060 rap_control_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_intel +Checking test 038 rap_control_intel results .... +Moving baseline 038 rap_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 447.664369 + 0: The maximum resident set size (KB) = 1230944 + +Test 038 rap_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_spp_sppt_shum_skeb_intel +Checking test 039 regional_spp_sppt_shum_skeb_intel results .... +Moving baseline 039 regional_spp_sppt_shum_skeb_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF01 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.611326 - 0: The maximum resident set size (KB) = 1212908 + 0: The total amount of wall time = 231.120517 + 0: The maximum resident set size (KB) = 1192800 -Test 061 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 468.526024 - 0: The maximum resident set size (KB) = 1160644 - -Test 062 rap_decomp_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 420.892009 - 0: The maximum resident set size (KB) = 1324276 - -Test 063 rap_2threads_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_restart_intel -Checking test 064 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 227.754632 - 0: The maximum resident set size (KB) = 1139652 - -Test 064 rap_restart_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 447.979533 - 0: The maximum resident set size (KB) = 1235712 - -Test 065 rap_sfcdiff_intel PASS +Test 039 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 470.581000 - 0: The maximum resident set size (KB) = 1141884 - -Test 066 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 335.622896 - 0: The maximum resident set size (KB) = 1168968 - -Test 067 rap_sfcdiff_restart_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 434.273737 - 0: The maximum resident set size (KB) = 1189456 - -Test 068 hrrr_control_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_qr_intel -Checking test 069 hrrr_control_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 429.273442 - 0: The maximum resident set size (KB) = 1078120 - -Test 069 hrrr_control_qr_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.933304 - 0: The maximum resident set size (KB) = 1115036 - -Test 070 hrrr_control_decomp_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_2threads_intel -Checking test 071 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 398.779766 - 0: The maximum resident set size (KB) = 1123556 - -Test 071 hrrr_control_2threads_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_intel -Checking test 072 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 320.842509 - 0: The maximum resident set size (KB) = 1115600 - -Test 072 hrrr_control_restart_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_intel +Checking test 040 rap_sfcdiff_intel results .... +Moving baseline 040 rap_sfcdiff_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 449.742001 + 0: The maximum resident set size (KB) = 1224988 + +Test 040 rap_sfcdiff_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_qr_intel -Checking test 073 hrrr_control_restart_qr_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 326.927217 - 0: The maximum resident set size (KB) = 1021516 - -Test 073 hrrr_control_restart_qr_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_intel +Checking test 041 hrrr_control_intel results .... +Moving baseline 041 hrrr_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 227.240525 + 0: The maximum resident set size (KB) = 1146824 + +Test 041 hrrr_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1beta_intel -Checking test 074 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 443.045763 - 0: The maximum resident set size (KB) = 1198144 - -Test 074 rrfs_v1beta_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_intel +Checking test 042 rrfs_v1beta_intel results .... +Moving baseline 042 rrfs_v1beta_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 445.614286 + 0: The maximum resident set size (KB) = 1198804 + +Test 042 rrfs_v1beta_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1nssl_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1nssl_intel -Checking test 075 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 523.527257 - 0: The maximum resident set size (KB) = 796424 - -Test 075 rrfs_v1nssl_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1nssl_intel +Checking test 043 rrfs_v1nssl_intel results .... +Moving baseline 043 rrfs_v1nssl_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 524.646314 + 0: The maximum resident set size (KB) = 802848 + +Test 043 rrfs_v1nssl_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1nssl_nohailnoccn_intel -Checking test 076 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 511.647932 - 0: The maximum resident set size (KB) = 915040 - -Test 076 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_gf_intel -Checking test 077 hrrr_gf_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 452.134777 - 0: The maximum resident set size (KB) = 1215624 - -Test 077 hrrr_gf_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_c3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_c3_intel -Checking test 078 hrrr_c3_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 453.474762 - 0: The maximum resident set size (KB) = 1221008 - -Test 078 hrrr_c3_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1nssl_nohailnoccn_intel +Checking test 044 rrfs_v1nssl_nohailnoccn_intel results .... +Moving baseline 044 rrfs_v1nssl_nohailnoccn_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 514.723217 + 0: The maximum resident set size (KB) = 916952 + +Test 044 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmg_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmg_intel +Checking test 045 control_csawmg_intel results .... +Moving baseline 045 control_csawmg_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.768974 - 0: The maximum resident set size (KB) = 808404 + 0: The total amount of wall time = 344.565970 + 0: The maximum resident set size (KB) = 818156 -Test 079 control_csawmg_intel PASS +Test 045 control_csawmg_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmgt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmgt_intel +Checking test 046 control_csawmgt_intel results .... +Moving baseline 046 control_csawmgt_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.284127 - 0: The maximum resident set size (KB) = 792324 + 0: The total amount of wall time = 337.296059 + 0: The maximum resident set size (KB) = 817140 -Test 080 control_csawmgt_intel PASS +Test 046 control_csawmgt_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_ras_intel -Checking test 081 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_intel +Checking test 047 control_ras_intel results .... +Moving baseline 047 control_ras_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.750739 - 0: The maximum resident set size (KB) = 810492 + 0: The total amount of wall time = 189.850820 + 0: The maximum resident set size (KB) = 811896 -Test 081 control_ras_intel PASS +Test 047 control_ras_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_wam_intel -Checking test 082 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_intel +Checking test 048 control_wam_intel results .... +Moving baseline 048 control_wam_intel files .... + Moving sfcf024.nc .........OK + Moving atmf024.nc .........OK - 0: The total amount of wall time = 113.662965 - 0: The maximum resident set size (KB) = 707232 + 0: The total amount of wall time = 115.415807 + 0: The maximum resident set size (KB) = 709136 -Test 082 control_wam_intel PASS +Test 048 control_wam_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 156.191658 - 0: The maximum resident set size (KB) = 1607444 - -Test 083 control_p8_faster_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_faster_intel +Checking test 049 control_p8_faster_intel results .... +Moving baseline 049 control_p8_faster_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 159.881848 + 0: The maximum resident set size (KB) = 1606392 + +Test 049 control_p8_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_control_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_control_faster_intel +Checking test 050 regional_control_faster_intel results .... +Moving baseline 050 regional_control_faster_intel files .... + Moving dynf000.nc .........OK + Moving dynf006.nc .........OK + Moving phyf000.nc .........OK + Moving phyf006.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF06 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 262.940382 - 0: The maximum resident set size (KB) = 1086772 + 0: The total amount of wall time = 272.089685 + 0: The maximum resident set size (KB) = 1103728 -Test 084 regional_control_faster_intel PASS +Test 050 regional_control_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_CubedSphereGrid_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 148.057913 - 0: The maximum resident set size (KB) = 795224 - -Test 085 control_CubedSphereGrid_debug_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_CubedSphereGrid_debug_intel +Checking test 051 control_CubedSphereGrid_debug_intel results .... +Moving baseline 051 control_CubedSphereGrid_debug_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf001.tile1.nc .........OK + Moving sfcf001.tile2.nc .........OK + Moving sfcf001.tile3.nc .........OK + Moving sfcf001.tile4.nc .........OK + Moving sfcf001.tile5.nc .........OK + Moving sfcf001.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf001.tile1.nc .........OK + Moving atmf001.tile2.nc .........OK + Moving atmf001.tile3.nc .........OK + Moving atmf001.tile4.nc .........OK + Moving atmf001.tile5.nc .........OK + Moving atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 153.728067 + 0: The maximum resident set size (KB) = 798792 + +Test 051 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 052 control_wrtGauss_netcdf_parallel_debug_intel results .... +Moving baseline 052 control_wrtGauss_netcdf_parallel_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 147.849481 - 0: The maximum resident set size (KB) = 798216 + 0: The total amount of wall time = 158.214582 + 0: The maximum resident set size (KB) = 801084 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 052 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_debug_intel +Checking test 053 control_stochy_debug_intel results .... +Moving baseline 053 control_stochy_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 163.824757 - 0: The maximum resident set size (KB) = 805252 + 0: The total amount of wall time = 167.252321 + 0: The maximum resident set size (KB) = 804228 -Test 087 control_stochy_debug_intel PASS +Test 053 control_stochy_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_lndp_debug_intel +Checking test 054 control_lndp_debug_intel results .... +Moving baseline 054 control_lndp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 150.580201 - 0: The maximum resident set size (KB) = 802772 + 0: The total amount of wall time = 151.824513 + 0: The maximum resident set size (KB) = 802968 -Test 088 control_lndp_debug_intel PASS +Test 054 control_lndp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmg_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmg_debug_intel +Checking test 055 control_csawmg_debug_intel results .... +Moving baseline 055 control_csawmg_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 226.130456 - 0: The maximum resident set size (KB) = 844844 + 0: The total amount of wall time = 227.070579 + 0: The maximum resident set size (KB) = 846580 -Test 089 control_csawmg_debug_intel PASS +Test 055 control_csawmg_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_csawmgt_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_csawmgt_debug_intel +Checking test 056 control_csawmgt_debug_intel results .... +Moving baseline 056 control_csawmgt_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 225.607353 - 0: The maximum resident set size (KB) = 840992 + 0: The total amount of wall time = 233.222726 + 0: The maximum resident set size (KB) = 842548 -Test 090 control_csawmgt_debug_intel PASS +Test 056 control_csawmgt_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_debug_intel +Checking test 057 control_ras_debug_intel results .... +Moving baseline 057 control_ras_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 148.813989 - 0: The maximum resident set size (KB) = 787472 + 0: The total amount of wall time = 153.364395 + 0: The maximum resident set size (KB) = 807476 -Test 091 control_ras_debug_intel PASS +Test 057 control_ras_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_diag_debug_intel +Checking test 058 control_diag_debug_intel results .... +Moving baseline 058 control_diag_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 151.425540 - 0: The maximum resident set size (KB) = 845988 + 0: The total amount of wall time = 155.712727 + 0: The maximum resident set size (KB) = 854180 -Test 092 control_diag_debug_intel PASS +Test 058 control_diag_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_debug_p8_intel +Checking test 059 control_debug_p8_intel results .... +Moving baseline 059 control_debug_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 164.014121 - 0: The maximum resident set size (KB) = 1621728 + 0: The total amount of wall time = 169.410660 + 0: The maximum resident set size (KB) = 1585676 -Test 093 control_debug_p8_intel PASS +Test 059 control_debug_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_debug_intel -Checking test 094 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_debug_intel +Checking test 060 regional_debug_intel results .... +Moving baseline 060 regional_debug_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK - 0: The total amount of wall time = 970.242844 - 0: The maximum resident set size (KB) = 1084272 + 0: The total amount of wall time = 998.345880 + 0: The maximum resident set size (KB) = 1097704 -Test 094 regional_debug_intel PASS +Test 060 regional_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_intel +Checking test 061 rap_control_debug_intel results .... +Moving baseline 061 rap_control_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.109303 - 0: The maximum resident set size (KB) = 1179652 + 0: The total amount of wall time = 275.199583 + 0: The maximum resident set size (KB) = 1177884 -Test 095 rap_control_debug_intel PASS +Test 061 rap_control_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_intel +Checking test 062 hrrr_control_debug_intel results .... +Moving baseline 062 hrrr_control_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 264.548130 - 0: The maximum resident set size (KB) = 1179264 + 0: The total amount of wall time = 266.310021 + 0: The maximum resident set size (KB) = 1178600 -Test 096 hrrr_control_debug_intel PASS +Test 062 hrrr_control_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_unified_drag_suite_debug_intel -Checking test 097 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_gf_debug_intel +Checking test 063 hrrr_gf_debug_intel results .... +Moving baseline 063 hrrr_gf_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 277.029444 - 0: The maximum resident set size (KB) = 1187396 + 0: The total amount of wall time = 275.956125 + 0: The maximum resident set size (KB) = 1182092 -Test 097 rap_unified_drag_suite_debug_intel PASS +Test 063 hrrr_gf_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_diag_debug_intel -Checking test 098 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_c3_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_c3_debug_intel +Checking test 064 hrrr_c3_debug_intel results .... +Moving baseline 064 hrrr_c3_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 293.148561 - 0: The maximum resident set size (KB) = 1258212 + 0: The total amount of wall time = 274.135778 + 0: The maximum resident set size (KB) = 1155424 -Test 098 rap_diag_debug_intel PASS +Test 064 hrrr_c3_debug_intel PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_cires_ugwp_debug_intel -Checking test 099 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_diag_debug_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_diag_debug_intel +Checking test 065 rap_diag_debug_intel results .... +Moving baseline 065 rap_diag_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 278.876005 - 0: The maximum resident set size (KB) = 1181568 + 0: The total amount of wall time = 290.212712 + 0: The maximum resident set size (KB) = 1261536 -Test 099 rap_cires_ugwp_debug_intel PASS +Test 065 rap_diag_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_unified_ugwp_debug_intel -Checking test 100 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_cires_ugwp_debug_intel +Checking test 066 rap_cires_ugwp_debug_intel results .... +Moving baseline 066 rap_cires_ugwp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 272.800402 - 0: The maximum resident set size (KB) = 1169560 + 0: The total amount of wall time = 280.259747 + 0: The maximum resident set size (KB) = 1188416 -Test 100 rap_unified_ugwp_debug_intel PASS +Test 066 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_lndp_debug_intel -Checking test 101 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_lndp_debug_intel +Checking test 067 rap_lndp_debug_intel results .... +Moving baseline 067 rap_lndp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 272.142350 - 0: The maximum resident set size (KB) = 1174564 + 0: The total amount of wall time = 283.605867 + 0: The maximum resident set size (KB) = 1185412 -Test 101 rap_lndp_debug_intel PASS +Test 067 rap_lndp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_progcld_thompson_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_progcld_thompson_debug_intel -Checking test 102 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_progcld_thompson_debug_intel +Checking test 068 rap_progcld_thompson_debug_intel results .... +Moving baseline 068 rap_progcld_thompson_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.778895 - 0: The maximum resident set size (KB) = 1177300 + 0: The total amount of wall time = 274.280979 + 0: The maximum resident set size (KB) = 1187652 -Test 102 rap_progcld_thompson_debug_intel PASS +Test 068 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_noah_debug_intel -Checking test 103 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_debug_intel +Checking test 069 rap_noah_debug_intel results .... +Moving baseline 069 rap_noah_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 267.214490 - 0: The maximum resident set size (KB) = 1174408 + 0: The total amount of wall time = 267.876547 + 0: The maximum resident set size (KB) = 1187092 -Test 103 rap_noah_debug_intel PASS +Test 069 rap_noah_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_debug_intel -Checking test 104 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_debug_intel +Checking test 070 rap_sfcdiff_debug_intel results .... +Moving baseline 070 rap_sfcdiff_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.156129 - 0: The maximum resident set size (KB) = 1185248 + 0: The total amount of wall time = 275.258811 + 0: The maximum resident set size (KB) = 1178928 -Test 104 rap_sfcdiff_debug_intel PASS +Test 070 rap_sfcdiff_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 071 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +Moving baseline 071 rap_noah_sfcdiff_cires_ugwp_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 440.412364 - 0: The maximum resident set size (KB) = 1177632 + 0: The total amount of wall time = 446.359894 + 0: The maximum resident set size (KB) = 1187164 -Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 071 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1beta_debug_intel -Checking test 106 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_debug_intel +Checking test 072 rrfs_v1beta_debug_intel results .... +Moving baseline 072 rrfs_v1beta_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 267.689585 - 0: The maximum resident set size (KB) = 1183368 + 0: The total amount of wall time = 271.513474 + 0: The maximum resident set size (KB) = 1176720 -Test 106 rrfs_v1beta_debug_intel PASS +Test 072 rrfs_v1beta_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_clm_lake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_clm_lake_debug_intel -Checking test 107 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_clm_lake_debug_intel +Checking test 073 rap_clm_lake_debug_intel results .... +Moving baseline 073 rap_clm_lake_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 328.762898 - 0: The maximum resident set size (KB) = 1180024 + 0: The total amount of wall time = 336.696336 + 0: The maximum resident set size (KB) = 1157596 -Test 107 rap_clm_lake_debug_intel PASS +Test 073 rap_clm_lake_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_flake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_flake_debug_intel -Checking test 108 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_flake_debug_intel +Checking test 074 rap_flake_debug_intel results .... +Moving baseline 074 rap_flake_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.668901 - 0: The maximum resident set size (KB) = 1172396 + 0: The total amount of wall time = 276.808011 + 0: The maximum resident set size (KB) = 1181564 -Test 108 rap_flake_debug_intel PASS +Test 074 rap_flake_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_wam_debug_intel -Checking test 109 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_debug_intel +Checking test 075 control_wam_debug_intel results .... +Moving baseline 075 control_wam_debug_intel files .... + Moving sfcf019.nc .........OK + Moving atmf019.nc .........OK - 0: The total amount of wall time = 272.994640 - 0: The maximum resident set size (KB) = 597936 + 0: The total amount of wall time = 274.594723 + 0: The maximum resident set size (KB) = 589996 -Test 109 control_wam_debug_intel PASS +Test 075 control_wam_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 216.487025 - 0: The maximum resident set size (KB) = 1098616 - -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +Moving baseline 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + Moving PRSLEV.GrbF00 .........OK + Moving PRSLEV.GrbF01 .........OK + Moving NATLEV.GrbF00 .........OK + Moving NATLEV.GrbF01 .........OK + 0: The total amount of wall time = 217.944868 + 0: The maximum resident set size (KB) = 1105360 -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn32_phy32_intel -Checking test 111 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 370.405906 - 0: The maximum resident set size (KB) = 1104324 - -Test 111 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 191.491568 - 0: The maximum resident set size (KB) = 1022588 - -Test 112 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_qr_dyn32_phy32_intel -Checking test 113 hrrr_control_qr_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 191.436661 - 0: The maximum resident set size (KB) = 978204 - -Test 113 hrrr_control_qr_dyn32_phy32_intel PASS +Test 076 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_2threads_dyn32_phy32_intel -Checking test 114 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 351.060240 - 0: The maximum resident set size (KB) = 1096740 - -Test 114 rap_2threads_dyn32_phy32_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn32_phy32_intel +Checking test 077 rap_control_dyn32_phy32_intel results .... +Moving baseline 077 rap_control_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 370.957606 + 0: The maximum resident set size (KB) = 1108132 + +Test 077 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_2threads_dyn32_phy32_intel -Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 177.666718 - 0: The maximum resident set size (KB) = 968260 - -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 201.861034 - 0: The maximum resident set size (KB) = 986808 - -Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_restart_dyn32_phy32_intel -Checking test 117 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 273.947172 - 0: The maximum resident set size (KB) = 1049180 - -Test 117 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 99.636826 - 0: The maximum resident set size (KB) = 936296 - -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_qr_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_qr_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 103.083156 - 0: The maximum resident set size (KB) = 885212 - -Test 119 hrrr_control_restart_qr_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_control_intel -Checking test 120 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 113.507919 - 0: The maximum resident set size (KB) = 1257408 - -Test 120 conus13km_control_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_dyn32_phy32_intel +Checking test 078 hrrr_control_dyn32_phy32_intel results .... +Moving baseline 078 hrrr_control_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 190.936162 + 0: The maximum resident set size (KB) = 1036996 + +Test 078 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_2threads_intel -Checking test 121 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 43.988928 - 0: The maximum resident set size (KB) = 1165224 - -Test 121 conus13km_2threads_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_control_intel +Checking test 079 conus13km_control_intel results .... +Moving baseline 079 conus13km_control_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 112.056463 + 0: The maximum resident set size (KB) = 1246612 + +Test 079 conus13km_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_restart_mismatch_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_restart_mismatch_intel -Checking test 122 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_restart_mismatch_intel +Checking test 080 conus13km_restart_mismatch_intel results .... +Moving baseline 080 conus13km_restart_mismatch_intel files .... + Moving sfcf002.nc .........OK + Moving atmf002.nc .........OK - 0: The total amount of wall time = 62.316387 - 0: The maximum resident set size (KB) = 1182436 + 0: The total amount of wall time = 62.417834 + 0: The maximum resident set size (KB) = 1182112 -Test 122 conus13km_restart_mismatch_intel PASS +Test 080 conus13km_restart_mismatch_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 240.728821 - 0: The maximum resident set size (KB) = 1095948 - -Test 123 rap_control_dyn64_phy32_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_intel +Checking test 081 rap_control_dyn64_phy32_intel results .... +Moving baseline 081 rap_control_dyn64_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 243.459087 + 0: The maximum resident set size (KB) = 1095584 + +Test 081 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_dyn32_phy32_intel +Checking test 082 rap_control_debug_dyn32_phy32_intel results .... +Moving baseline 082 rap_control_debug_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 271.562180 - 0: The maximum resident set size (KB) = 1058764 + 0: The total amount of wall time = 268.808709 + 0: The maximum resident set size (KB) = 1063724 -Test 124 rap_control_debug_dyn32_phy32_intel PASS +Test 082 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 266.076658 - 0: The maximum resident set size (KB) = 1067656 - -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_debug_intel -Checking test 126 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_dyn32_phy32_intel +Checking test 083 hrrr_control_debug_dyn32_phy32_intel results .... +Moving baseline 083 hrrr_control_debug_dyn32_phy32_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 824.000212 - 0: The maximum resident set size (KB) = 1261132 + 0: The total amount of wall time = 258.497200 + 0: The maximum resident set size (KB) = 1059060 -Test 126 conus13km_debug_intel PASS +Test 083 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_debug_2threads_intel -Checking test 127 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 469.268037 - 0: The maximum resident set size (KB) = 1196680 - -Test 127 conus13km_debug_2threads_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_debug_intel +Checking test 084 conus13km_debug_intel results .... +Moving baseline 084 conus13km_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 823.319960 + 0: The maximum resident set size (KB) = 1235752 + +Test 084 conus13km_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_radar_tten_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_radar_tten_debug_intel -Checking test 128 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_radar_tten_debug_intel +Checking test 085 conus13km_radar_tten_debug_intel results .... +Moving baseline 085 conus13km_radar_tten_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 838.991483 - 0: The maximum resident set size (KB) = 1325808 + 0: The total amount of wall time = 843.771372 + 0: The maximum resident set size (KB) = 1336928 -Test 128 conus13km_radar_tten_debug_intel PASS +Test 085 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn64_phy32_debug_intel -Checking test 129 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_debug_intel +Checking test 086 rap_control_dyn64_phy32_debug_intel results .... +Moving baseline 086 rap_control_dyn64_phy32_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 275.807704 - 0: The maximum resident set size (KB) = 1096648 + 0: The total amount of wall time = 276.359400 + 0: The maximum resident set size (KB) = 1095544 -Test 129 rap_control_dyn64_phy32_debug_intel PASS +Test 086 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_atm_intel -Checking test 130 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_intel +Checking test 087 hafs_regional_atm_intel results .... +Moving baseline 087 hafs_regional_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 225.845432 - 0: The maximum resident set size (KB) = 1228128 + 0: The total amount of wall time = 216.452749 + 0: The maximum resident set size (KB) = 1230280 -Test 130 hafs_regional_atm_intel PASS +Test 087 hafs_regional_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 088 hafs_regional_atm_thompson_gfdlsf_intel results .... +Moving baseline 088 hafs_regional_atm_thompson_gfdlsf_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK - 0: The total amount of wall time = 336.044353 - 0: The maximum resident set size (KB) = 1569336 + 0: The total amount of wall time = 333.339231 + 0: The maximum resident set size (KB) = 1583344 -Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 088 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_atm_ocn_intel -Checking test 132 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_ocn_intel +Checking test 089 hafs_regional_atm_ocn_intel results .... +Moving baseline 089 hafs_regional_atm_ocn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving archv.2019_241_06.a .........OK + Moving archs.2019_241_06.a .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.206290 - 0: The maximum resident set size (KB) = 1385848 + 0: The total amount of wall time = 370.627859 + 0: The maximum resident set size (KB) = 1419300 -Test 132 hafs_regional_atm_ocn_intel PASS +Test 089 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_atm_wav_intel -Checking test 133 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_wav_intel +Checking test 090 hafs_regional_atm_wav_intel results .... +Moving baseline 090 hafs_regional_atm_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving 20190829.060000.out_grd.ww3 .........OK + Moving 20190829.060000.out_pnt.ww3 .........OK + Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 741.659586 - 0: The maximum resident set size (KB) = 1428464 + 0: The total amount of wall time = 734.523217 + 0: The maximum resident set size (KB) = 1423084 -Test 133 hafs_regional_atm_wav_intel PASS +Test 090 hafs_regional_atm_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_atm_ocn_wav_intel -Checking test 134 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 849.008644 - 0: The maximum resident set size (KB) = 1467432 +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_atm_ocn_wav_intel +Checking test 091 hafs_regional_atm_ocn_wav_intel results .... +Moving baseline 091 hafs_regional_atm_ocn_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving archv.2019_241_06.a .........OK + Moving archs.2019_241_06.a .........OK + Moving 20190829.060000.out_grd.ww3 .........OK + Moving 20190829.060000.out_pnt.ww3 .........OK + Moving ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -Test 134 hafs_regional_atm_ocn_wav_intel PASS + 0: The total amount of wall time = 844.522868 + 0: The maximum resident set size (KB) = 1466992 - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_1nest_atm_intel -Checking test 135 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 298.259729 - 0: The maximum resident set size (KB) = 658036 - -Test 135 hafs_regional_1nest_atm_intel PASS +Test 091 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_1nest_atm_qr_intel -Checking test 136 hafs_regional_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 319.184557 - 0: The maximum resident set size (KB) = 498480 - -Test 136 hafs_regional_1nest_atm_qr_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_1nest_atm_intel +Checking test 092 hafs_regional_1nest_atm_intel results .... +Moving baseline 092 hafs_regional_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 295.470373 + 0: The maximum resident set size (KB) = 654180 + +Test 092 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 343.290091 - 0: The maximum resident set size (KB) = 660108 - -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_telescopic_2nests_atm_intel +Checking test 093 hafs_regional_telescopic_2nests_atm_intel results .... +Moving baseline 093 hafs_regional_telescopic_2nests_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving atm.nest03.f006.nc .........OK + Moving sfc.nest03.f006.nc .........OK + 0: The total amount of wall time = 341.317297 + 0: The maximum resident set size (KB) = 658892 -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 139.100505 - 0: The maximum resident set size (KB) = 383084 - -Test 138 hafs_global_1nest_atm_intel PASS +Test 093 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_global_1nest_atm_qr_intel -Checking test 139 hafs_global_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 143.864952 - 0: The maximum resident set size (KB) = 373524 - -Test 139 hafs_global_1nest_atm_qr_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 383.217895 - 0: The maximum resident set size (KB) = 457952 - -Test 140 hafs_global_multiple_4nests_atm_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_1nest_atm_intel +Checking test 094 hafs_global_1nest_atm_intel results .... +Moving baseline 094 hafs_global_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile2.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile3.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile4.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile5.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile6.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 140.474751 + 0: The maximum resident set size (KB) = 402612 + +Test 094 hafs_global_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_global_multiple_4nests_atm_qr_intel -Checking test 141 hafs_global_multiple_4nests_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 425.722898 - 0: The maximum resident set size (KB) = 482724 - -Test 141 hafs_global_multiple_4nests_atm_qr_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_multiple_4nests_atm_intel +Checking test 095 hafs_global_multiple_4nests_atm_intel results .... +Moving baseline 095 hafs_global_multiple_4nests_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving atm.nest03.f006.nc .........OK + Moving sfc.nest03.f006.nc .........OK + Moving atm.nest04.f006.nc .........OK + Moving sfc.nest04.f006.nc .........OK + Moving atm.nest05.f006.nc .........OK + Moving sfc.nest05.f006.nc .........OK + Moving HURPRS.GrbF06 .........OK + Moving HURPRS.GrbF06.nest02 .........OK + Moving HURPRS.GrbF06.nest03 .........OK + Moving HURPRS.GrbF06.nest04 .........OK + Moving HURPRS.GrbF06.nest05 .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile2.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile3.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile4.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile5.nc .........OK + Moving RESTART/20200825.180000.phy_data.tile6.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_ne.res.nest03.nc .........OK + Moving RESTART/fv_BC_ne.res.nest04.nc .........OK + Moving RESTART/fv_BC_ne.res.nest05.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest03.nc .........OK + Moving RESTART/fv_BC_sw.res.nest04.nc .........OK + Moving RESTART/fv_BC_sw.res.nest05.nc .........OK + + 0: The total amount of wall time = 385.054522 + 0: The maximum resident set size (KB) = 477084 + +Test 095 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_specified_moving_1nest_atm_intel -Checking test 142 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_specified_moving_1nest_atm_intel +Checking test 096 hafs_regional_specified_moving_1nest_atm_intel results .... +Moving baseline 096 hafs_regional_specified_moving_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving HURPRS.GrbF06 .........OK + Moving HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 191.098010 - 0: The maximum resident set size (KB) = 670320 + 0: The total amount of wall time = 191.171450 + 0: The maximum resident set size (KB) = 672532 -Test 142 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 096 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_storm_following_1nest_atm_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 177.317081 - 0: The maximum resident set size (KB) = 668528 - -Test 143 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_storm_following_1nest_atm_qr_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_qr_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 199.617866 - 0: The maximum resident set size (KB) = 530856 - -Test 144 hafs_regional_storm_following_1nest_atm_qr_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_intel +Checking test 097 hafs_regional_storm_following_1nest_atm_intel results .... +Moving baseline 097 hafs_regional_storm_following_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving RESTART/20200825.180000.coupler.res .........OK + Moving RESTART/20200825.180000.fv_core.res.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20200825.180000.phy_data.nc .........OK + Moving RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nc .........OK + Moving RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Moving RESTART/fv_BC_ne.res.nest02.nc .........OK + Moving RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 180.962319 + 0: The maximum resident set size (KB) = 671084 + +Test 097 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 098 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +Moving baseline 098 hafs_regional_storm_following_1nest_atm_ocn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving archv.2020_238_18.a .........OK + Moving archs.2020_238_18.a .........OK - 0: The total amount of wall time = 224.109953 - 0: The maximum resident set size (KB) = 713176 + 0: The total amount of wall time = 220.525457 + 0: The maximum resident set size (KB) = 715404 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 098 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_global_storm_following_1nest_atm_intel -Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_global_storm_following_1nest_atm_intel +Checking test 099 hafs_global_storm_following_1nest_atm_intel results .... +Moving baseline 099 hafs_global_storm_following_1nest_atm_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 54.332047 - 0: The maximum resident set size (KB) = 414884 + 0: The total amount of wall time = 55.255583 + 0: The maximum resident set size (KB) = 419020 -Test 146 hafs_global_storm_following_1nest_atm_intel PASS +Test 099 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +Moving baseline 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel files .... + Moving atmf001.nc .........OK + Moving sfcf001.nc .........OK + Moving atm.nest02.f001.nc .........OK + Moving sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 695.484452 - 0: The maximum resident set size (KB) = 721492 + 0: The total amount of wall time = 701.292613 + 0: The maximum resident set size (KB) = 720608 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 100 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +Moving baseline 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving atm.nest02.f006.nc .........OK + Moving sfc.nest02.f006.nc .........OK + Moving archv.2020_238_18.a .........OK + Moving archs.2020_238_18.a .........OK + Moving 20200825.180000.out_grd.ww3 .........OK + Moving 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 483.446467 - 0: The maximum resident set size (KB) = 807960 + 0: The total amount of wall time = 475.316201 + 0: The maximum resident set size (KB) = 803836 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 101 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_docn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_docn_intel -Checking test 149 hafs_regional_docn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_docn_intel +Checking test 102 hafs_regional_docn_intel results .... +Moving baseline 102 hafs_regional_docn_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 334.674963 - 0: The maximum resident set size (KB) = 1419892 + 0: The total amount of wall time = 335.159865 + 0: The maximum resident set size (KB) = 1403512 -Test 149 hafs_regional_docn_intel PASS +Test 102 hafs_regional_docn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_docn_oisst_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_docn_oisst_intel -Checking test 150 hafs_regional_docn_oisst_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_docn_oisst_intel +Checking test 103 hafs_regional_docn_oisst_intel results .... +Moving baseline 103 hafs_regional_docn_oisst_intel files .... + Moving atmf006.nc .........OK + Moving sfcf006.nc .........OK + Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.225757 - 0: The maximum resident set size (KB) = 1392600 + 0: The total amount of wall time = 335.375932 + 0: The maximum resident set size (KB) = 1378116 -Test 150 hafs_regional_docn_oisst_intel PASS +Test 103 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hafs_regional_datm_cdeps_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hafs_regional_datm_cdeps_intel -Checking test 151 hafs_regional_datm_cdeps_intel results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - - 0: The total amount of wall time = 976.195057 - 0: The maximum resident set size (KB) = 1156248 +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hafs_regional_datm_cdeps_intel +Checking test 104 hafs_regional_datm_cdeps_intel results .... +Moving baseline 104 hafs_regional_datm_cdeps_intel files .... + Moving ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Moving ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Moving ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -Test 151 hafs_regional_datm_cdeps_intel PASS + 0: The total amount of wall time = 991.569277 + 0: The maximum resident set size (KB) = 1135256 - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_control_cfsr_intel -Checking test 152 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 158.756995 - 0: The maximum resident set size (KB) = 1111232 - -Test 152 datm_cdeps_control_cfsr_intel PASS +Test 104 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_restart_cfsr_intel -Checking test 153 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_intel +Checking test 105 datm_cdeps_control_cfsr_intel results .... +Moving baseline 105 datm_cdeps_control_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.540055 - 0: The maximum resident set size (KB) = 1063168 + 0: The total amount of wall time = 159.238365 + 0: The maximum resident set size (KB) = 1111496 -Test 153 datm_cdeps_restart_cfsr_intel PASS +Test 105 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_control_gefs_intel -Checking test 154 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_gefs_intel +Checking test 106 datm_cdeps_control_gefs_intel results .... +Moving baseline 106 datm_cdeps_control_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.682173 - 0: The maximum resident set size (KB) = 1008400 + 0: The total amount of wall time = 152.682148 + 0: The maximum resident set size (KB) = 1003016 -Test 154 datm_cdeps_control_gefs_intel PASS +Test 106 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_iau_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_iau_gefs_intel -Checking test 155 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_iau_gefs_intel +Checking test 107 datm_cdeps_iau_gefs_intel results .... +Moving baseline 107 datm_cdeps_iau_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.097933 - 0: The maximum resident set size (KB) = 1005820 + 0: The total amount of wall time = 154.710097 + 0: The maximum resident set size (KB) = 1005852 -Test 155 datm_cdeps_iau_gefs_intel PASS +Test 107 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_stochy_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_stochy_gefs_intel -Checking test 156 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_stochy_gefs_intel +Checking test 108 datm_cdeps_stochy_gefs_intel results .... +Moving baseline 108 datm_cdeps_stochy_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.093170 - 0: The maximum resident set size (KB) = 985588 + 0: The total amount of wall time = 153.330960 + 0: The maximum resident set size (KB) = 995860 -Test 156 datm_cdeps_stochy_gefs_intel PASS +Test 108 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_ciceC_cfsr_intel -Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_ciceC_cfsr_intel +Checking test 109 datm_cdeps_ciceC_cfsr_intel results .... +Moving baseline 109 datm_cdeps_ciceC_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.708401 - 0: The maximum resident set size (KB) = 1097628 + 0: The total amount of wall time = 158.700011 + 0: The maximum resident set size (KB) = 1098796 -Test 157 datm_cdeps_ciceC_cfsr_intel PASS +Test 109 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_bulk_cfsr_intel -Checking test 158 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_bulk_cfsr_intel +Checking test 110 datm_cdeps_bulk_cfsr_intel results .... +Moving baseline 110 datm_cdeps_bulk_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.405525 - 0: The maximum resident set size (KB) = 1095016 + 0: The total amount of wall time = 152.857162 + 0: The maximum resident set size (KB) = 1126628 -Test 158 datm_cdeps_bulk_cfsr_intel PASS +Test 110 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_bulk_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_bulk_gefs_intel -Checking test 159 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_bulk_gefs_intel +Checking test 111 datm_cdeps_bulk_gefs_intel results .... +Moving baseline 111 datm_cdeps_bulk_gefs_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.519254 - 0: The maximum resident set size (KB) = 996084 + 0: The total amount of wall time = 149.687000 + 0: The maximum resident set size (KB) = 990776 -Test 159 datm_cdeps_bulk_gefs_intel PASS +Test 111 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_mx025_cfsr_intel -Checking test 160 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_mx025_cfsr_intel +Checking test 112 datm_cdeps_mx025_cfsr_intel results .... +Moving baseline 112 datm_cdeps_mx025_cfsr_intel files .... + Moving RESTART/20111001.120000.MOM.res.nc .........OK + Moving RESTART/20111001.120000.MOM.res_1.nc .........OK + Moving RESTART/20111001.120000.MOM.res_2.nc .........OK + Moving RESTART/20111001.120000.MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-01-43200.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 417.481585 - 0: The maximum resident set size (KB) = 1029608 + 0: The total amount of wall time = 406.310926 + 0: The maximum resident set size (KB) = 1034788 -Test 160 datm_cdeps_mx025_cfsr_intel PASS +Test 112 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_mx025_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_mx025_gefs_intel -Checking test 161 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 407.971467 - 0: The maximum resident set size (KB) = 1015496 - -Test 161 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_multiple_files_cfsr_intel -Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_mx025_gefs_intel +Checking test 113 datm_cdeps_mx025_gefs_intel results .... +Moving baseline 113 datm_cdeps_mx025_gefs_intel files .... + Moving RESTART/20111001.120000.MOM.res.nc .........OK + Moving RESTART/20111001.120000.MOM.res_1.nc .........OK + Moving RESTART/20111001.120000.MOM.res_2.nc .........OK + Moving RESTART/20111001.120000.MOM.res_3.nc .........OK + Moving RESTART/iced.2011-10-01-43200.nc .........OK + Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 158.567715 - 0: The maximum resident set size (KB) = 1117592 + 0: The total amount of wall time = 414.872319 + 0: The maximum resident set size (KB) = 1011392 -Test 162 datm_cdeps_multiple_files_cfsr_intel PASS +Test 113 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_3072x1536_cfsr_intel -Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_3072x1536_cfsr_intel +Checking test 114 datm_cdeps_3072x1536_cfsr_intel results .... +Moving baseline 114 datm_cdeps_3072x1536_cfsr_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 230.568032 - 0: The maximum resident set size (KB) = 2462224 + 0: The total amount of wall time = 226.782297 + 0: The maximum resident set size (KB) = 2421372 -Test 163 datm_cdeps_3072x1536_cfsr_intel PASS +Test 114 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_gfs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_gfs_intel -Checking test 164 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_gfs_intel +Checking test 115 datm_cdeps_gfs_intel results .... +Moving baseline 115 datm_cdeps_gfs_intel files .... + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 246.952457 - 0: The maximum resident set size (KB) = 2449744 + 0: The total amount of wall time = 232.808420 + 0: The maximum resident set size (KB) = 2464020 -Test 164 datm_cdeps_gfs_intel PASS +Test 115 datm_cdeps_gfs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_debug_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_debug_cfsr_intel -Checking test 165 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_debug_cfsr_intel +Checking test 116 datm_cdeps_debug_cfsr_intel results .... +Moving baseline 116 datm_cdeps_debug_cfsr_intel files .... + Moving RESTART/20111001.060000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-01-21600.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 363.035391 - 0: The maximum resident set size (KB) = 1022132 + 0: The total amount of wall time = 348.352017 + 0: The maximum resident set size (KB) = 1027772 -Test 165 datm_cdeps_debug_cfsr_intel PASS +Test 116 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_control_cfsr_faster_intel -Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 155.851535 - 0: The maximum resident set size (KB) = 1099876 - -Test 166 datm_cdeps_control_cfsr_faster_intel PASS - +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_faster_intel +Checking test 117 datm_cdeps_control_cfsr_faster_intel results .... +Moving baseline 117 datm_cdeps_control_cfsr_faster_intel files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_lnd_gswp3_intel -Checking test 167 datm_cdeps_lnd_gswp3_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 6.091412 - 0: The maximum resident set size (KB) = 241556 + 0: The total amount of wall time = 155.936003 + 0: The maximum resident set size (KB) = 1113876 -Test 167 datm_cdeps_lnd_gswp3_intel PASS +Test 117 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_lnd_gswp3_rst_intel -Checking test 168 datm_cdeps_lnd_gswp3_rst_intel results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_lnd_gswp3_intel +Checking test 118 datm_cdeps_lnd_gswp3_intel results .... +Moving baseline 118 datm_cdeps_lnd_gswp3_intel files .... + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 10.640250 - 0: The maximum resident set size (KB) = 257520 + 0: The total amount of wall time = 5.880810 + 0: The maximum resident set size (KB) = 249096 -Test 168 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 118 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_atmlnd_sbs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 203.689196 - 0: The maximum resident set size (KB) = 1611728 - -Test 169 control_p8_atmlnd_sbs_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_atmlnd_sbs_intel +Checking test 119 control_p8_atmlnd_sbs_intel results .... +Moving baseline 119 control_p8_atmlnd_sbs_intel files .... + Moving sfcf000.tile1.nc .........OK + Moving sfcf000.tile2.nc .........OK + Moving sfcf000.tile3.nc .........OK + Moving sfcf000.tile4.nc .........OK + Moving sfcf000.tile5.nc .........OK + Moving sfcf000.tile6.nc .........OK + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf000.tile1.nc .........OK + Moving atmf000.tile2.nc .........OK + Moving atmf000.tile3.nc .........OK + Moving atmf000.tile4.nc .........OK + Moving atmf000.tile5.nc .........OK + Moving atmf000.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Moving ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Moving ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 202.359385 + 0: The maximum resident set size (KB) = 1611296 + +Test 119 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmwav_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/atmwav_control_noaero_p8_intel -Checking test 170 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 94.084610 - 0: The maximum resident set size (KB) = 1645312 - -Test 170 atmwav_control_noaero_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmwav_control_noaero_p8_intel +Checking test 120 atmwav_control_noaero_p8_intel results .... +Moving baseline 120 atmwav_control_noaero_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Moving RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Moving 20210322.180000.out_pnt.ww3 .........OK + Moving 20210322.180000.out_grd.ww3 .........OK + Moving ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 93.329097 + 0: The maximum resident set size (KB) = 1642464 + +Test 120 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_atmwav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_atmwav_intel -Checking test 171 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 88.248620 - 0: The maximum resident set size (KB) = 663928 - -Test 171 control_atmwav_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_atmwav_intel +Checking test 121 control_atmwav_intel results .... +Moving baseline 121 control_atmwav_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Moving 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 88.787561 + 0: The maximum resident set size (KB) = 662216 + +Test 121 control_atmwav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/atmaero_control_p8_intel -Checking test 172 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 231.153908 - 0: The maximum resident set size (KB) = 2998608 - -Test 172 atmaero_control_p8_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_intel +Checking test 122 atmaero_control_p8_intel results .... +Moving baseline 122 atmaero_control_p8_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 227.819599 + 0: The maximum resident set size (KB) = 2998460 + +Test 122 atmaero_control_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_rad_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/atmaero_control_p8_rad_intel -Checking test 173 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 282.738050 - 0: The maximum resident set size (KB) = 3063996 - -Test 173 atmaero_control_p8_rad_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_rad_intel +Checking test 123 atmaero_control_p8_rad_intel results .... +Moving baseline 123 atmaero_control_p8_rad_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 282.421894 + 0: The maximum resident set size (KB) = 3028496 + +Test 123 atmaero_control_p8_rad_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//atmaero_control_p8_rad_micro_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/atmaero_control_p8_rad_micro_intel -Checking test 174 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 287.479170 - 0: The maximum resident set size (KB) = 3029940 - -Test 174 atmaero_control_p8_rad_micro_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/atmaero_control_p8_rad_micro_intel +Checking test 124 atmaero_control_p8_rad_micro_intel results .... +Moving baseline 124 atmaero_control_p8_rad_micro_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 286.676747 + 0: The maximum resident set size (KB) = 3080916 + +Test 124 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_atmaq_intel -Checking test 175 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 645.673758 - 0: The maximum resident set size (KB) = 5337092 - -Test 175 regional_atmaq_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_intel +Checking test 125 regional_atmaq_intel results .... +Moving baseline 125 regional_atmaq_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf003.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf003.nc .........OK + Moving atmf006.nc .........OK + Moving RESTART/20190801.180000.coupler.res .........OK + Moving RESTART/20190801.180000.fv_core.res.nc .........OK + Moving RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.180000.phy_data.nc .........OK + Moving RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 635.801745 + 0: The maximum resident set size (KB) = 5323860 + +Test 125 regional_atmaq_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1181.959210 - 0: The maximum resident set size (KB) = 4754612 - -Test 176 regional_atmaq_debug_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_debug_intel +Checking test 126 regional_atmaq_debug_intel results .... +Moving baseline 126 regional_atmaq_debug_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving RESTART/20190801.130000.coupler.res .........OK + Moving RESTART/20190801.130000.fv_core.res.nc .........OK + Moving RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.130000.phy_data.nc .........OK + Moving RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1182.074581 + 0: The maximum resident set size (KB) = 4884172 + +Test 126 regional_atmaq_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_atmaq_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_atmaq_faster_intel -Checking test 177 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 572.343640 - 0: The maximum resident set size (KB) = 5420884 - -Test 177 regional_atmaq_faster_intel PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_atmaq_faster_intel +Checking test 127 regional_atmaq_faster_intel results .... +Moving baseline 127 regional_atmaq_faster_intel files .... + Moving sfcf000.nc .........OK + Moving sfcf003.nc .........OK + Moving sfcf006.nc .........OK + Moving atmf000.nc .........OK + Moving atmf003.nc .........OK + Moving atmf006.nc .........OK + Moving RESTART/20190801.180000.coupler.res .........OK + Moving RESTART/20190801.180000.fv_core.res.nc .........OK + Moving RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20190801.180000.phy_data.nc .........OK + Moving RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 559.030898 + 0: The maximum resident set size (KB) = 5423376 + +Test 127 regional_atmaq_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_c48_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_c48_gnu -Checking test 178 control_c48_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 689.269419 -0: The maximum resident set size (KB) = 729220 - -Test 178 control_c48_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_c48_gnu +Checking test 128 control_c48_gnu results .... +Moving baseline 128 control_c48_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 688.826013 +0: The maximum resident set size (KB) = 731656 + +Test 128 control_c48_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_stochy_gnu -Checking test 179 control_stochy_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_gnu +Checking test 129 control_stochy_gnu results .... +Moving baseline 129 control_stochy_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 235.355640 - 0: The maximum resident set size (KB) = 534544 + 0: The total amount of wall time = 232.038276 + 0: The maximum resident set size (KB) = 535920 -Test 179 control_stochy_gnu PASS +Test 129 control_stochy_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_ras_gnu -Checking test 180 control_ras_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_gnu +Checking test 130 control_ras_gnu results .... +Moving baseline 130 control_ras_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 285.244649 - 0: The maximum resident set size (KB) = 547204 + 0: The total amount of wall time = 287.754263 + 0: The maximum resident set size (KB) = 515928 -Test 180 control_ras_gnu PASS +Test 130 control_ras_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_p8_gnu -Checking test 181 control_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 300.087176 - 0: The maximum resident set size (KB) = 1289900 - -Test 181 control_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_p8_gnu +Checking test 131 control_p8_gnu results .... +Moving baseline 131 control_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 298.596976 + 0: The maximum resident set size (KB) = 1292260 + +Test 131 control_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_flake_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_flake_gnu -Checking test 182 control_flake_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 341.894106 - 0: The maximum resident set size (KB) = 576504 - -Test 182 control_flake_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_flake_gnu +Checking test 132 control_flake_gnu results .... +Moving baseline 132 control_flake_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + 0: The total amount of wall time = 340.320411 + 0: The maximum resident set size (KB) = 554084 -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_gnu -Checking test 183 rap_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 681.384789 - 0: The maximum resident set size (KB) = 847212 - -Test 183 rap_control_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_decomp_gnu -Checking test 184 rap_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 690.736147 - 0: The maximum resident set size (KB) = 850976 - -Test 184 rap_decomp_gnu PASS +Test 132 control_flake_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_2threads_gnu -Checking test 185 rap_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 613.404320 - 0: The maximum resident set size (KB) = 949712 - -Test 185 rap_2threads_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_restart_gnu -Checking test 186 rap_restart_gnu results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 351.858295 - 0: The maximum resident set size (KB) = 754116 - -Test 186 rap_restart_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_gnu +Checking test 133 rap_control_gnu results .... +Moving baseline 133 rap_control_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 681.433872 + 0: The maximum resident set size (KB) = 852384 + +Test 133 rap_control_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_gnu -Checking test 187 rap_sfcdiff_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 692.715862 - 0: The maximum resident set size (KB) = 842396 - -Test 187 rap_sfcdiff_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_decomp_gnu -Checking test 188 rap_sfcdiff_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 717.549047 - 0: The maximum resident set size (KB) = 848996 - -Test 188 rap_sfcdiff_decomp_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_sfcdiff_restart_gnu -Checking test 189 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 515.415549 - 0: The maximum resident set size (KB) = 759924 - -Test 189 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_gnu -Checking test 190 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 660.043483 - 0: The maximum resident set size (KB) = 847456 - -Test 190 hrrr_control_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_sfcdiff_gnu +Checking test 134 rap_sfcdiff_gnu results .... +Moving baseline 134 rap_sfcdiff_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 686.260197 + 0: The maximum resident set size (KB) = 849496 + +Test 134 rap_sfcdiff_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_qr_gnu -Checking test 191 hrrr_control_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 661.989556 - 0: The maximum resident set size (KB) = 859952 - -Test 191 hrrr_control_qr_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_gnu +Checking test 135 hrrr_control_gnu results .... +Moving baseline 135 hrrr_control_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 348.278492 + 0: The maximum resident set size (KB) = 850120 + +Test 135 hrrr_control_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_2threads_gnu -Checking test 192 hrrr_control_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 582.233290 - 0: The maximum resident set size (KB) = 944884 - -Test 192 hrrr_control_2threads_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_decomp_gnu -Checking test 193 hrrr_control_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 663.739574 - 0: The maximum resident set size (KB) = 844232 - -Test 193 hrrr_control_decomp_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_gnu -Checking test 194 hrrr_control_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_gnu +Checking test 136 rrfs_v1beta_gnu results .... +Moving baseline 136 rrfs_v1beta_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 691.314445 + 0: The maximum resident set size (KB) = 844936 + +Test 136 rrfs_v1beta_gnu PASS - 0: The total amount of wall time = 496.528488 - 0: The maximum resident set size (KB) = 706380 -Test 194 hrrr_control_restart_gnu PASS +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_diag_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_diag_debug_gnu +Checking test 137 control_diag_debug_gnu results .... +Moving baseline 137 control_diag_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + 0: The total amount of wall time = 81.796627 + 0: The maximum resident set size (KB) = 543504 -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_qr_gnu -Checking test 195 hrrr_control_restart_qr_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +Test 137 control_diag_debug_gnu PASS - 0: The total amount of wall time = 497.241780 - 0: The maximum resident set size (KB) = 612936 -Test 195 hrrr_control_restart_qr_gnu PASS +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/regional_debug_gnu +Checking test 138 regional_debug_gnu results .... +Moving baseline 138 regional_debug_gnu files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK + 0: The total amount of wall time = 430.380671 + 0: The maximum resident set size (KB) = 815432 -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1beta_gnu -Checking test 196 rrfs_v1beta_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 664.721710 - 0: The maximum resident set size (KB) = 845924 - -Test 196 rrfs_v1beta_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_gf_gnu -Checking test 197 hrrr_gf_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 689.702123 - 0: The maximum resident set size (KB) = 845984 - -Test 197 hrrr_gf_gnu PASS +Test 138 regional_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_diag_debug_gnu -Checking test 198 control_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_gnu +Checking test 139 rap_control_debug_gnu results .... +Moving baseline 139 rap_control_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 85.345717 - 0: The maximum resident set size (KB) = 549156 + 0: The total amount of wall time = 138.502227 + 0: The maximum resident set size (KB) = 865000 -Test 198 control_diag_debug_gnu PASS +Test 139 rap_control_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//regional_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/regional_debug_gnu -Checking test 199 regional_debug_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_gnu +Checking test 140 hrrr_control_debug_gnu results .... +Moving baseline 140 hrrr_control_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 431.979523 - 0: The maximum resident set size (KB) = 821072 + 0: The total amount of wall time = 135.740057 + 0: The maximum resident set size (KB) = 855720 -Test 199 regional_debug_gnu PASS +Test 140 hrrr_control_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_debug_gnu -Checking test 200 rap_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_gf_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_gf_debug_gnu +Checking test 141 hrrr_gf_debug_gnu results .... +Moving baseline 141 hrrr_gf_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 138.253467 - 0: The maximum resident set size (KB) = 861148 + 0: The total amount of wall time = 137.347845 + 0: The maximum resident set size (KB) = 858540 -Test 200 rap_control_debug_gnu PASS +Test 141 hrrr_gf_debug_gnu PASS -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_debug_gnu -Checking test 201 hrrr_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_c3_debug_gnu +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_c3_debug_gnu +Checking test 142 hrrr_c3_debug_gnu results .... +Moving baseline 142 hrrr_c3_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 136.361180 - 0: The maximum resident set size (KB) = 861900 + 0: The total amount of wall time = 137.523486 + 0: The maximum resident set size (KB) = 899696 -Test 201 hrrr_control_debug_gnu PASS +Test 142 hrrr_c3_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_diag_debug_gnu -Checking test 202 rap_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_diag_debug_gnu +Checking test 143 rap_diag_debug_gnu results .... +Moving baseline 143 rap_diag_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 153.361928 - 0: The maximum resident set size (KB) = 949188 + 0: The total amount of wall time = 148.226149 + 0: The maximum resident set size (KB) = 940212 -Test 202 rap_diag_debug_gnu PASS +Test 143 rap_diag_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +Moving baseline 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 216.952977 - 0: The maximum resident set size (KB) = 854556 + 0: The total amount of wall time = 217.226751 + 0: The maximum resident set size (KB) = 856528 -Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 144 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_progcld_thompson_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_progcld_thompson_debug_gnu -Checking test 204 rap_progcld_thompson_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_progcld_thompson_debug_gnu +Checking test 145 rap_progcld_thompson_debug_gnu results .... +Moving baseline 145 rap_progcld_thompson_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 142.067468 - 0: The maximum resident set size (KB) = 856912 + 0: The total amount of wall time = 136.366788 + 0: The maximum resident set size (KB) = 892780 -Test 204 rap_progcld_thompson_debug_gnu PASS +Test 145 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rrfs_v1beta_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rrfs_v1beta_debug_gnu -Checking test 205 rrfs_v1beta_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rrfs_v1beta_debug_gnu +Checking test 146 rrfs_v1beta_debug_gnu results .... +Moving baseline 146 rrfs_v1beta_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 134.584842 - 0: The maximum resident set size (KB) = 892168 + 0: The total amount of wall time = 137.872533 + 0: The maximum resident set size (KB) = 863060 -Test 205 rrfs_v1beta_debug_gnu PASS +Test 146 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_ras_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_ras_debug_gnu -Checking test 206 control_ras_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_ras_debug_gnu +Checking test 147 control_ras_debug_gnu results .... +Moving baseline 147 control_ras_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 80.215910 - 0: The maximum resident set size (KB) = 504688 + 0: The total amount of wall time = 79.812514 + 0: The maximum resident set size (KB) = 534456 -Test 206 control_ras_debug_gnu PASS +Test 147 control_ras_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_stochy_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_stochy_debug_gnu -Checking test 207 control_stochy_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_stochy_debug_gnu +Checking test 148 control_stochy_debug_gnu results .... +Moving baseline 148 control_stochy_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 122.316556 - 0: The maximum resident set size (KB) = 494424 + 0: The total amount of wall time = 117.361477 + 0: The maximum resident set size (KB) = 530604 -Test 207 control_stochy_debug_gnu PASS +Test 148 control_stochy_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_debug_p8_gnu -Checking test 208 control_debug_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_debug_p8_gnu +Checking test 149 control_debug_p8_gnu results .... +Moving baseline 149 control_debug_p8_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 88.651654 - 0: The maximum resident set size (KB) = 1286300 + 0: The total amount of wall time = 87.865133 + 0: The maximum resident set size (KB) = 1278500 -Test 208 control_debug_p8_gnu PASS +Test 149 control_debug_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_flake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_flake_debug_gnu -Checking test 209 rap_flake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_flake_debug_gnu +Checking test 150 rap_flake_debug_gnu results .... +Moving baseline 150 rap_flake_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 136.030834 - 0: The maximum resident set size (KB) = 857184 + 0: The total amount of wall time = 138.780401 + 0: The maximum resident set size (KB) = 857404 -Test 209 rap_flake_debug_gnu PASS +Test 150 rap_flake_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_clm_lake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_clm_lake_debug_gnu -Checking test 210 rap_clm_lake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_clm_lake_debug_gnu +Checking test 151 rap_clm_lake_debug_gnu results .... +Moving baseline 151 rap_clm_lake_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 154.332768 - 0: The maximum resident set size (KB) = 896404 + 0: The total amount of wall time = 155.634935 + 0: The maximum resident set size (KB) = 860352 -Test 210 rap_clm_lake_debug_gnu PASS +Test 151 rap_clm_lake_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//control_wam_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/control_wam_debug_gnu -Checking test 211 control_wam_debug_gnu results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/control_wam_debug_gnu +Checking test 152 control_wam_debug_gnu results .... +Moving baseline 152 control_wam_debug_gnu files .... + Moving sfcf019.nc .........OK + Moving atmf019.nc .........OK - 0: The total amount of wall time = 132.527655 - 0: The maximum resident set size (KB) = 283680 + 0: The total amount of wall time = 137.109118 + 0: The maximum resident set size (KB) = 286168 -Test 211 control_wam_debug_gnu PASS +Test 152 control_wam_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn32_phy32_gnu -Checking test 212 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 695.693542 - 0: The maximum resident set size (KB) = 741804 - -Test 212 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_dyn32_phy32_gnu -Checking test 213 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 352.818721 - 0: The maximum resident set size (KB) = 740632 - -Test 213 hrrr_control_dyn32_phy32_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn32_phy32_gnu +Checking test 153 rap_control_dyn32_phy32_gnu results .... +Moving baseline 153 rap_control_dyn32_phy32_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 707.655942 + 0: The maximum resident set size (KB) = 741088 + +Test 153 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_qr_dyn32_phy32_gnu -Checking test 214 hrrr_control_qr_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 354.854133 - 0: The maximum resident set size (KB) = 748732 - -Test 214 hrrr_control_qr_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 629.497564 - 0: The maximum resident set size (KB) = 782208 - -Test 215 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 311.457729 - 0: The maximum resident set size (KB) = 787332 - -Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 362.325065 - 0: The maximum resident set size (KB) = 740644 - -Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 524.268501 - 0: The maximum resident set size (KB) = 649520 - -Test 218 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 182.900407 - 0: The maximum resident set size (KB) = 614860 - -Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_restart_qr_dyn32_phy32_gnu -Checking test 220 hrrr_control_restart_qr_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 187.174437 - 0: The maximum resident set size (KB) = 580372 - -Test 220 hrrr_control_restart_qr_dyn32_phy32_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_control_gnu -Checking test 221 conus13km_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 243.925425 - 0: The maximum resident set size (KB) = 949708 - -Test 221 conus13km_control_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_dyn32_phy32_gnu +Checking test 154 hrrr_control_dyn32_phy32_gnu results .... +Moving baseline 154 hrrr_control_dyn32_phy32_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.120000.coupler.res .........OK + Moving RESTART/20210322.120000.fv_core.res.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.120000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 355.081431 + 0: The maximum resident set size (KB) = 741688 + +Test 154 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_2threads_gnu -Checking test 222 conus13km_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 103.323685 - 0: The maximum resident set size (KB) = 992180 - -Test 222 conus13km_2threads_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_control_gnu +Checking test 155 conus13km_control_gnu results .... +Moving baseline 155 conus13km_control_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 239.593595 + 0: The maximum resident set size (KB) = 948756 + +Test 155 conus13km_control_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_restart_mismatch_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_restart_mismatch_gnu -Checking test 223 conus13km_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_restart_mismatch_gnu +Checking test 156 conus13km_restart_mismatch_gnu results .... +Moving baseline 156 conus13km_restart_mismatch_gnu files .... + Moving sfcf002.nc .........OK + Moving atmf002.nc .........OK - 0: The total amount of wall time = 128.176584 - 0: The maximum resident set size (KB) = 607836 + 0: The total amount of wall time = 125.167819 + 0: The maximum resident set size (KB) = 607512 -Test 223 conus13km_restart_mismatch_gnu PASS +Test 156 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn64_phy32_gnu -Checking test 224 rap_control_dyn64_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 405.817631 - 0: The maximum resident set size (KB) = 764616 - -Test 224 rap_control_dyn64_phy32_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_gnu +Checking test 157 rap_control_dyn64_phy32_gnu results .... +Moving baseline 157 rap_control_dyn64_phy32_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 405.452450 + 0: The maximum resident set size (KB) = 766564 + +Test 157 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_debug_dyn32_phy32_gnu -Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_debug_dyn32_phy32_gnu +Checking test 158 rap_control_debug_dyn32_phy32_gnu results .... +Moving baseline 158 rap_control_debug_dyn32_phy32_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 140.415713 - 0: The maximum resident set size (KB) = 748536 + 0: The total amount of wall time = 138.262569 + 0: The maximum resident set size (KB) = 753292 -Test 225 rap_control_debug_dyn32_phy32_gnu PASS +Test 158 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/hrrr_control_debug_dyn32_phy32_gnu -Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/hrrr_control_debug_dyn32_phy32_gnu +Checking test 159 hrrr_control_debug_dyn32_phy32_gnu results .... +Moving baseline 159 hrrr_control_debug_dyn32_phy32_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 140.145150 - 0: The maximum resident set size (KB) = 747980 + 0: The total amount of wall time = 135.396341 + 0: The maximum resident set size (KB) = 749164 -Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 159 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_debug_gnu -Checking test 227 conus13km_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 427.511780 - 0: The maximum resident set size (KB) = 966704 - -Test 227 conus13km_debug_gnu PASS - - -baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 259.016910 - 0: The maximum resident set size (KB) = 1005704 - -Test 228 conus13km_debug_2threads_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_debug_gnu +Checking test 160 conus13km_debug_gnu results .... +Moving baseline 160 conus13km_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving RESTART/20210512.170000.coupler.res .........OK + Moving RESTART/20210512.170000.fv_core.res.nc .........OK + Moving RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210512.170000.phy_data.nc .........OK + Moving RESTART/20210512.170000.sfc_data.nc .........OK + + 0: The total amount of wall time = 417.480712 + 0: The maximum resident set size (KB) = 963396 + +Test 160 conus13km_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//conus13km_radar_tten_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/conus13km_radar_tten_debug_gnu +Checking test 161 conus13km_radar_tten_debug_gnu results .... +Moving baseline 161 conus13km_radar_tten_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 421.970229 - 0: The maximum resident set size (KB) = 1034176 + 0: The total amount of wall time = 415.543658 + 0: The maximum resident set size (KB) = 1032076 -Test 229 conus13km_radar_tten_debug_gnu PASS +Test 161 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/rap_control_dyn64_phy32_debug_gnu +Checking test 162 rap_control_dyn64_phy32_debug_gnu results .... +Moving baseline 162 rap_control_dyn64_phy32_debug_gnu files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 145.783000 - 0: The maximum resident set size (KB) = 779392 + 0: The total amount of wall time = 145.025189 + 0: The maximum resident set size (KB) = 775272 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 162 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_p8_gnu -Checking test 231 cpld_control_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 634.154758 - 0: The maximum resident set size (KB) = 1506052 - -Test 231 cpld_control_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_p8_gnu +Checking test 163 cpld_control_p8_gnu results .... +Moving baseline 163 cpld_control_p8_gnu files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 648.768439 + 0: The maximum resident set size (KB) = 1503056 + +Test 163 cpld_control_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_nowave_noaero_p8_gnu -Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 410.053686 - 0: The maximum resident set size (KB) = 1399088 - -Test 232 cpld_control_nowave_noaero_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_nowave_noaero_p8_gnu +Checking test 164 cpld_control_nowave_noaero_p8_gnu results .... +Moving baseline 164 cpld_control_nowave_noaero_p8_gnu files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 418.316737 + 0: The maximum resident set size (KB) = 1399200 + +Test 164 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_debug_p8_gnu -Checking test 233 cpld_debug_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 357.755860 - 0: The maximum resident set size (KB) = 1514916 - -Test 233 cpld_debug_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_p8_gnu +Checking test 165 cpld_debug_p8_gnu results .... +Moving baseline 165 cpld_debug_p8_gnu files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 351.882958 + 0: The maximum resident set size (KB) = 1515364 + +Test 165 cpld_debug_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_control_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_control_pdlib_p8_gnu -Checking test 234 cpld_control_pdlib_p8_gnu results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1412.632104 - 0: The maximum resident set size (KB) = 1378852 - -Test 234 cpld_control_pdlib_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_control_pdlib_p8_gnu +Checking test 166 cpld_control_pdlib_p8_gnu results .... +Moving baseline 166 cpld_control_pdlib_p8_gnu files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1433.819415 + 0: The maximum resident set size (KB) = 1380184 + +Test 166 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//cpld_debug_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/cpld_debug_pdlib_p8_gnu -Checking test 235 cpld_debug_pdlib_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 715.753554 - 0: The maximum resident set size (KB) = 1385688 - -Test 235 cpld_debug_pdlib_p8_gnu PASS +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/cpld_debug_pdlib_p8_gnu +Checking test 167 cpld_debug_pdlib_p8_gnu results .... +Moving baseline 167 cpld_debug_pdlib_p8_gnu files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 717.350546 + 0: The maximum resident set size (KB) = 1388148 + +Test 167 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/baselines/main-20240117//datm_cdeps_control_cfsr_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_13676/datm_cdeps_control_cfsr_gnu -Checking test 236 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model//run//rt_6696/datm_cdeps_control_cfsr_gnu +Checking test 168 datm_cdeps_control_cfsr_gnu results .... +Moving baseline 168 datm_cdeps_control_cfsr_gnu files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 178.650035 - 0: The maximum resident set size (KB) = 684332 + 0: The total amount of wall time = 173.261240 + 0: The maximum resident set size (KB) = 684044 -Test 236 datm_cdeps_control_cfsr_gnu PASS +Test 168 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jan 25 01:13:57 UTC 2024 -Elapsed time: 01h:38m:23s. Have a nice day! +Mon Jan 29 22:02:03 UTC 2024 +Elapsed time: 01h:24m:16s. Have a nice day! From b3a36229bfaa397903f175ad788be4f21aaa7548 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Tue, 30 Jan 2024 15:09:08 -0500 Subject: [PATCH 10/10] update FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index ff47354515..47eec05ad9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ff47354515ee6221dbc356b9bfdf622f9fad4161 +Subproject commit 47eec05ad9fd1f0fbc81df6465e2acdf59610bbd